Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Jose Cortina on Oct 31, 2007 10:11
open dhtmlx forum
Disable tooltips in XML configuration

Hello,

I found a way to disable tooltips using the enableTooltips() method on the grid object, but our grid is configured via XML. Is there an equivalent of the enableTooltips for XML configuration?

Thank you!
Answer posted on Oct 31, 2007 11:09
You can call any js command from xml

<rows>
    <head>
       <afterInit>
          <call command="enableTooltips"><param>false,false,false</param></call>
       </afterInit>
    </head>
    <row id="....
    ...
</rows>