Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Dec 17, 2007 21:13
open dhtmlx forum
dhtmlxgrid mouseover the description on the grid

when i populate the value i.e. description in the dhtmlxgrid ,when i move the mouse on over the description it has to do some action either change the nearby image or change the color of description.

Can you please help me on this?
Answer posted by Support on Dec 18, 2007 02:22
Grid provide onMouseOver event, which can be used for such task

mygrid.attachEvent("onMouseOver",function(id,index){
    //id = id of row
    //index = index of column
       ... any custom code here...
});