Client Side Event That Fires After Aspxclientgridview.applyfilter Performs Its Work
This link explains how to handle it on the server side via the ASPxGridView.AfterPerformCallback event: http://www.devexpress.com/Support/Center/p/Q274366.aspx How can I handle it
Solution 1:
- In
theGridView_AfterPerformCallbackadd entry toJSPropertiescollection, e.g.cp_FilterApplied. - Add
EndCallbackclient side event handler. - In
EndCallbackhandler executethis.filterAppliedEvent()ifcp_FilterAppliedexists. - Delete that property so that subsequent callback doesn't execute
filterAppliedEventmethod.
Look at my answer to this question for code example.
It's really the same problem, just set js property in theGridView_AfterPerformCallback instead of ASPxGridView1_RowUpdated and adjust names/js code to your needs.
Post a Comment for "Client Side Event That Fires After Aspxclientgridview.applyfilter Performs Its Work"