div container / z-index / grid + layout

How can I get a div container to display on top of the layout (and grid) rather than inside the grid cell?



For example, onmouseover text in a cell the div container is displayed on top of the layout/grid; not confined to the cell size.



Thank you.



Denis


Grid provides onMouseOver event handler. The third pamather of the function is event object, so you can get the position of the container. z-index of the container should be more than 2000 in order to be shown above the layout.


grid.attachEvent(“onMouseOver”, showCustomTooltip);



function showCustomTooltip(id,index,ev){


/your code here/


return false


}