Table of Contents
ClientSideOnColumnResize Property

Gets or sets the name of the client side function to be called when a column is resized.

Syntax
 public String ClientSideOnColumnResize { get; set; }
Remarks

Set this property to the name of your JavaScript function that handles the event. The handler should take the following form:

JavaScript
function your_event_handler(grid, column)
{
   ....
}

These arguments are passed to your handler:

Name Remark
grid The grid that fires the event
column The column that has been resized

This event can be used by a CustomColumn to resize its editor UI when the column resizes.

See Also