ASPxGridBase.FilterControlColumnsCreated Event
In This Article
Occurs after all filter control columns have been created.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event FilterControlColumnsCreatedEventHandler FilterControlColumnsCreated
#Event Data
The FilterControlColumnsCreated event's data class is FilterControlColumnsCreatedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Columns | Gets a collection of filter columns. |
#Remarks
The FilterControlColumnsCreated event is raised after all filter control columns have been created in the grid. You can handle this event to customize the filter control column collection, which is accessible using the FilterControlColumnsCreatedEventArgs.Columns event argument property.
See Also