Table of Contents
ClientSideOnItemOver Property

Gets or sets the name of the client side function to be called when mouse is over a list box item.

Syntax
 public String ClientSideOnItemOver { 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