We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
stopResize
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.
The text was updated successfully, but these errors were encountered:
Hi @asapostolov!
That's fine! I can add it if you don't want to, but I would prefer to use resizeComplete instead of resizeStopResize... it makes more sense to me.
resizeComplete
resizeStopResize
Sorry, something went wrong.
4e54230
Added in v2.29.0 - see docs.
No branches or pull requests
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:
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.
The text was updated successfully, but these errors were encountered: