Hi Joe,
You could make your own events for the mouse over on a column header
element, but you would have to override some existing functionality
(i.e., header hover state). But if you still want to override it, use
this function definition:
nitobi.grid.Grid.prototype.handleHeaderMouseOut = function(event){//
algorithms!}
It is possible for a cell to enter/leave edit mode, so it'll look
something like: <ntb:grid onmouseoverevent="myFunction(e)">
And here's a half pseudo code snippet that should help:
myFunction(e)
{
var myGrid = nitobi.getComponent('theGridId');
// clear out the last cell edit
myGrid.setEditMode(false);
// get cellObject from event arg e
// set cell to edit mode
// cellObjectReference.edit();
}
I hope that helps!