Called when user triggers automatic resizing by double clicking a column resizer.
onColumnAutoResize = function(event)
You can add the event listener during the grid object creation:
or after the grid object has been created:
The event handler is called before the default action of the event is triggered. You can cancel the default action by calling
event.preventDefault(). To perform an action
after the event is fully processed, define
event.onComplete function.
See
events page in utilities for more details.