Skip to content Skip to sidebar Skip to footer

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:

  1. In theGridView_AfterPerformCallback add entry to JSProperties collection, e.g. cp_FilterApplied.
  2. Add EndCallback client side event handler.
  3. In EndCallback handler execute this.filterAppliedEvent() if cp_FilterApplied exists.
  4. Delete that property so that subsequent callback doesn't execute filterAppliedEvent method.

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"