C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / Filtering Event

Filtering Event
Occurs when the preparation for filtering is started but before the C1GridView instance handles the filter operation.
Syntax
'Declaration
 
Public Event Filtering As C1GridViewFilterEventHandler
 
Event Data

The event handler receives an argument of type C1GridViewFilterEventArgs containing data related to this event. The following C1GridViewFilterEventArgs properties provide information specific to this event.

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets a dictionary containing field name / filter operator pairs.  
Gets a dictionary containing field name / filter value pairs in the filter row.  
Remarks
To stop the operation set the Cancel property of the C1GridViewFilterEventArgs object to true.
See Also