jquery - How to extend the _alsoResize function of the resizable plugin? -
how extend _alsoresize function of resizable plugin?
the simplest way to extend whole resize portion of of widget plugin, example:
$.ui.plugin.add("resizable", "alsoresize", { resize: function (event, ui) { //your own resize implementation... } }); the start , stop the original alsoresize plugin stay there. here's example using extension method above.
Comments
Post a Comment