find position of grid row

Attaching to the grid OnMouseOver event, I would like to determine the row that I am hovering over and then calculate the right edge and top edge x,y position of the row, so that I can move a floating div to align with the row as I mouseover the row. How can I do this?

onMouseOver event provides row ID and cell index for cell other which mouse hovered
You can get its position as
var data = grid.getPosition(grid.cells(id,ind).cell);
var x = data[0]
var y = data[1]


The alternative solution - redefine existing method as


//need to be executed before grid creation
mygrid.prototype._drawTooltip=function(e){
//custom code here
// e - DOM event object, which has info about coordinates
}