Table of Contents
ClientSideOnItemSelected Property

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

Syntax
 public String ClientSideOnItemSelected { get; set; }
Remarks

An item can be selected when FullRowMode is set to true. When FullRowMode is set to false, use ClientSideOnCellSelected.

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 getSelectedItem to get the current selected item.

See Also