BootstrapGridView.CustomUnboundColumnData Event
Enables data to be supplied to unbound columns.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v25.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
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. |
| IsGetData | Gets whether you should provide data for the currently processed cell. Inherited from ASPxGridColumnDataEventArgs. |
| IsSetData | Gets whether the cell’s value should be stored in a custom data source. Inherited from ASPxGridColumnDataEventArgs. |
| ListSourceRowIndex | Gets the current data item’s (row, card or record) index in the data source. Inherited from ASPxGridColumnDataEventArgs. |
| Value | Gets or sets the value of the cell currently being processed. Inherited from ASPxGridColumnDataEventArgs. |
The event data class exposes the following methods:
| Method | Description |
|---|---|
| GetListSourceFieldValue(Int32, String) | 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 ASPxGridColumnDataEventArgs. |
| GetListSourceFieldValue(String) | 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 ASPxGridColumnDataEventArgs. |
See Also