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?
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…
});