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 on the client side? I am working on a custom server control and I have this client side function on my control: applyFilterToGridView: function () { this.theGridView.ApplyFilter(this.filterCondition); this.filterAppliedEvent(); } Because ApplyFilter does a callback, this.filterAppliedEvent() is not called at the