Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
get column name to which i click for filerting.
posted

Hi,

Done filerting on web data grid.There are 10 columns and i want to get column name to which i click for filerting from client side.

Parents
  • 49378
    posted

    Hi miglage,

    Thank you for posting in the community.

    In this scenario you can use the ColumnFilterAdded client-side event in order to access the key of the column on which a filter has been added:

    function WebDataGrid1_Filtering_ColumnFilterAdded(sender, eventArgs)
    {
        var key = eventArgs.get_columnFilter().get_columnKey();
    }

    Please feel free to contact me if you have any questions.

Reply Children
No Data