Hi
I am implementing the Save Layout for the Kendo Grid and have a question about events.
I am currently using the following events to save changes to the layout.
change: function(e) {
saveGridLayout();
},
columnReorder: function(e) {
saveGridLayout();
},
columnResize: function(e) {
saveGridLayout();
}
If I just use Column Reorder and Resize events then I get no issues with reloading the grid because neither of those events get called on load of the grid. My issue is that I have to use the change event to catch grouping/filtering of the grid which I also want to save, but as this gets called on gird load the save gets called again before my load.
Can anyone explain to me the events I should use to catch changes to the gird, save the layout and then when reloading layout when to do that?
Regards
Mike