I have a problem with jqGrid. I need to call a function when resizing a column. I tried the following ...
$grid = jQuery("#list").jqGrid({
...
resizeStop: function(width, index) {
alert("resize column " + index + " to " + width " + "pixels");
},
...
});
... but the event does not fire.
Am I missing something? Any ideas anybody?
Thanks!
source
share