grid_itemcommand_handler

Client side event handler for ClientSideOnItemCommand.

Note: This is a prototype, not a function. You should provide a function that matches this prototype if you wish to handle the corresponding event on the client side. The prototype provides information about the arguments and return value of the function you provide.

Syntax
JavaScript
 grid_itemcommand_handler(grid, itemIndex, colIndex, commandName)

Parameters

grid
The Grid object that raises this event.
itemIndex
The zero based item index of the column.
colIndex
The zero based original index of the column.
commandName
The command name.
Remarks

You can call raiseItemCommandEvent to pass this event to the server side and raises ItemCommand event on the server side.

See Also