BootstrapGridView.CustomUnboundColumnData Event
In This Article
Enables data to be supplied to unbound columns.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.2.dll
NuGet Package: DevExpress.Web.Bootstrap
#Declaration
public event BootstrapGridViewColumnDataEventHandler CustomUnboundColumnData
#Event Data
The CustomUnboundColumnData event's data class is BootstrapGridViewColumnDataEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Column | Gets the unbound column currently being processed. |
Is |
Gets whether you should provide data for the currently processed cell.
Inherited from ASPx |
Is |
Gets whether the cell’s value should be stored in a custom data source.
Inherited from ASPx |
List |
Gets the current data item’s (row, card or record) index in the data source.
Inherited from ASPx |
Value |
Gets or sets the value of the cell currently being processed.
Inherited from ASPx |
The event data class exposes the following methods:
Method | Description |
---|---|
Get |
Returns the value of the specified field in the specified data item (row, card or record) in the control’s underlying data source.
Inherited from ASPx |
Get |
Returns the value of the specified cell in the processed data item (row, card or record) in the control’s underlying data source.
Inherited from ASPx |
See Also