Table of Contents
ClientSideOnCellSelected Property

Gets or sets the name of the client side JavaScript function to be called when a cell is selected.

Syntax
 public String ClientSideOnCellSelected { get; set; }
Remarks

An cell can be selected when FullRowMode is set to false. When FullRowMode is set to true, use ClientSideOnItemSelected.

See clientside_generic_handler for prototype information about this event handler. The client side Grid object is passed as the first parameter when calling this handler. Inside the handler you can call getSelectedCell to get the current selected cell.

See Also