grid_itemevent_handler

Client side event handler for ClientSideBeforeEditItem and ClientSideAfterEditItem.

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_itemevent_handler(gridItem, save)

Parameters

gridItem
The grid item that enters or exits edit mode.
save
Specifies whether changes have been saved.

Return Value

Returns false to cancel edit for ClientSideBeforeEditItem. Return value is ignored for ClientSideAfterEditItem.

See Also