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_AfterPerformCallback
add entry toJSProperties
collection, e.g.cp_FilterApplied
. - Add
EndCallback
client side event handler. - In
EndCallback
handler executethis.filterAppliedEvent()
ifcp_FilterApplied
exists. - 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"