Categories | Question details Back To List | ||
disable mouse over functionality in dhtmlxgrid i want to disable mouseover functionlaity on particular column of dhtmlxgrid. Please provide me solution for it. Answer posted by Support on Nov 24, 2008 01:53 You can use grid.attachEvent("onMouseOver",function(id,index){ if (index == INDEX) return false; //block for some column return true; }) Answer posted by shweta on Nov 24, 2008 02:11 it's not working.....i want to disable tooltip for particular column.... Answer posted by Support on Nov 24, 2008 02:29 The code above must disable any buil-in tooltips for column in question. Also, you may try to use grid.enableTooltips("true,true,false"); //parameter - list of flags for each column |