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.

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 )



Thanks it works.