Categories | Question details Back To List | ||
dhtmlxGrid | Default Column(td) Title Formation We are using the dhtmlxGrid. In the grid column we are observing that the title in the "td" element is formed by default which is overriding our anchor(a) tag title which is contained in that "td". Is there a way by which we can stop this "td" title formation.Underneath is the trace to that element: div.gridbox table.obj td Answer posted by Support on Aug 26, 2009 01:35 You can block onMouseOver event, which is part of title generation process grid.attachEvent("onMouseOver",function(ind){ return false; }) |