Table of Contents

Class GridCellEventArgs

Namespace
JJMasterData.Core.UI.Events.Args
Assembly
JJMasterData.Core.dll

Event arguments used to customize the rendered content in a grid cell.

public class GridCellEventArgs : EventArgs
Inheritance
GridCellEventArgs
Inherited Members

Properties

DataRow

The current row data containing values for all fields.

public required Dictionary<string, object?> DataRow { get; set; }

Property Value

Dictionary<string, object>

Field

The current form field being rendered.

public required FormElementField Field { get; set; }

Property Value

FormElementField

HtmlResult

The expected result containing the rendered HTML content.

public HtmlBuilder? HtmlResult { get; set; }

Property Value

HtmlBuilder

Sender

The component responsible for rendering the content.

public required ComponentBase Sender { get; set; }

Property Value

ComponentBase