Categories | Question details Back To List | ||
dhtmlxGrid - toolbar events Hello, I'am using paggingSkin "toolbar" in my dhtmlxGrid, and I need to delete cash before any page is changed or items per page is changed. Every time I need to load all data from server. Is there any Event fired before this? Or could you advice me how to solve this problem? Thanks H. Answer posted by Support on Apr 07, 2009 05:55 >> before any page is changed or items per page is changed both actions will trigger onBeforePageChanged event, which can be used to add custom reaction. Event occur after action issued by user, but before updating view in grid ( returning false from event handler will block operation ) Answer posted by Honza on Apr 07, 2009 06:11 Thanks it works. |