Skip to main content

BootstrapCardView.BeforeHeaderFilterFillItems Event

Enables you to provide custom filter items instead of default ones displayed within a Header Filter.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public event BootstrapCardViewBeforeHeaderFilterFillItemsEventHandler BeforeHeaderFilterFillItems

Event Data

The BeforeHeaderFilterFillItems event's data class is BootstrapCardViewBeforeHeaderFilterFillItemsEventArgs. The following properties provide information specific to this event:

Property Description
Column Gets the data column currently being filtered.
Handled Specifies whether the BeforeHeaderFilterFillItems event is handled. Inherited from ASPxGridBeforeHeaderFilterFillItemsEventArgs.
Values Gets a collection that contains the header filer values. Inherited from ASPxGridHeaderFilterEventArgs.

The event data class exposes the following methods:

Method Description
AddShowAll() Adds the ‘All’ item to the header filter. Inherited from ASPxGridHeaderFilterEventArgs.
AddShowBlanks(String) Creates and adds the “Blanks” filter value to the header filter values. Inherited from ASPxGridHeaderFilterEventArgs.
AddShowNonBlanks(String) Creates and adds the “(Non blanks)” filter value to the header filter values. Inherited from ASPxGridHeaderFilterEventArgs.
AddValue(String, CriteriaOperator) Adds a new filter item with the specified filter criteria operator to the header filter. Inherited from ASPxGridBeforeHeaderFilterFillItemsEventArgs.
AddValue(String, String, String) Adds a new filter item with the specified filter criteria to the header filter. Inherited from ASPxGridHeaderFilterEventArgs.
AddValue(String, String) Adds a new filter item to the header filter. Inherited from ASPxGridHeaderFilterEventArgs.
CreateShowBlanksValue(String) Creates and returns the (Blanks) filter item used to filter a column by blank values. Inherited from ASPxGridHeaderFilterEventArgs.
CreateShowNonBlanksValue(String) Creates and returns the (Non blanks) filter item used to filter a column by blank values. Inherited from ASPxGridHeaderFilterEventArgs.

Remarks

End-users can filter column values using the Header Filter. The CardView control does not display column headers by default. To enable column headers, set the ASPxCardViewSettings.ShowHeaderPanel property to true.To invoke the header filter, an end-user should click on the filter button. The BeforeHeaderFilterFillItems event is raised before the header filter is shown and default filter items are created. The event enables you to provide custom filter items.

The data column whose filter button has been clicked is returned by the BootstrapCardViewBeforeHeaderFilterFillItemsEventArgs.Column property.

Set the ASPxGridBeforeHeaderFilterFillItemsEventArgs.Handled property to true to prevent the BootstrapCardView.HeaderFilterFillItems event from being raised. Otherwise, the event clears the item collection before filling it with default items.

To add custom items to the default items, use the BootstrapCardView.HeaderFilterFillItems event.

Note

The CardView header filter allows the use of HTML tags in an item text. To learn more, see Header Filter.

Note

View the Demo To see this feature in action, please refer to the following online demos: Header Filter, Header Filter - Checked list mode and Header Filter - Custom Values.

See Also