Table of Contents
ClientSideOnColumnReorder Property

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

Syntax
 public String ClientSideOnColumnReorder { 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
See Also