-
Notifications
You must be signed in to change notification settings - Fork 754
Closed
Description
Hey there!
I needed to add a new event handler in order to be able to sync and save column sizes on the server.
So I added this code at the end of stopResize
event in Resizable widget:
c.$table.triggerHandler('resiazbleStopResize');
And I can bind to this event handler via:
$table.bind("resiazbleStopResize", function (e, table) {
alert("resiazbleStopResize");
});
I wondered if this would be a desirable functionality for me to make a pull request for? It's really simple and needs a little bit of documentation.