Categories | Question details Back To List | ||
How to disable the titles Hi, How to disable the titles which gets displayed for every cell? below mentioned is the source code sample of one of the cells that is being displayed. There is a text and image in the cell. On hovering on the image "4" should get displayed in the title bu i am getting the valu "1". Value "1" is the value which the cell is holding. <cell style="background-color:#ffffff;text-align:left;padding-left:1px;font-weight:bold;color:#000000;"> <![CDATA[<div style="background-color:#ffffff;text-align:left;padding-left:3px;font-weight:bold;color:#000000;"> <a href="javascript:wtShowHighlight(9050.6);" onmouseover="return SomeStatus(\'Message\');" onmouseout="return SomeStatus(\'\');"><font color="#000000">1</font></a><div class="clsABC"> <img style="vertical-align:top;float:right;"title=" 4 " src="//path/abc.gif"></div></div>]]> </cell> Answer posted by Support on Oct 30, 2008 08:30 You can use enableTooltips(list) method is order to disable tooltips for the columns: grid.enableTooltips("false") Or you can set custom tooltips: <cell title="some text" ...>...</cell> Answer posted by Support on Oct 30, 2008 08:37 Also, if you want to disable custom tooltips, but have working title attributes of inline HTML tags, next code can be added to the init of dhtmlxgrid. grid.attachEvent("onMouseOver",function(){ |