Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The name of a Javascript function to be called when the mouse rolls over an item. The function receives an object argument that has the list row and column of the item under the mouse.

Example:

     function onmouseoverHandler(evt) {
   alert("onmouseover handler: Row=" + evt.row + ". Column=" + evt.column);
}