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

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(listBox, item, e)
{
   ....
}

These arguments are passed to your handler:

Name Remark
listBox The listBox that fires the event
item The item that receives the mouse over event
e The DOM event object
See Also