Page History
...
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);
}