Table of Contents
ClientSideOnCellOver Property

Gets or sets the name of the client side function to be called when mouse is over a grid cell.

Syntax
 public String ClientSideOnCellOver { 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, cell, changed, e)
{
   ....
}

These arguments are passed to your handler:

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