ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / Filtering Event

In This Topic
    Filtering Event (C1GridView)
    In This Topic
    Occurs when the preparation for filtering is started but before the C1GridView instance handles the filter operation.
    Syntax
    'Declaration
     
    Public Event Filtering As C1GridViewFilterEventHandler
    public event C1GridViewFilterEventHandler Filtering
    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