Is the event object available within event handlers ?
Example (FF) - getting current mouse position:
var grid = dhxLayout.cells(“a”).attachGrid();
var showContext= function(r,c) {
alert(e.pageY); // e is undefined
}
grid.attachEvent(“onRightClick”, showContext);
Regards,
Alexander