Table of Contents
ClientSideOnItemOver Property

Gets or sets the name of the client side function to be called when mouse is over a grid 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(grid, item, changed, e)
{
   ....
}

These arguments are passed to your handler:

Name Remark
grid The grid that fires the event
item The item that receives the mouse over event
changed Whether this is the same item as last time
e The DOM event object
See Also