Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by mongkol on Jul 20, 2008 22:52
open dhtmlx forum
tooltip in tree

I want to set tooltip on node in my dhtmlxtree.
You can Show me please? by get tooltip from xml.
Answer posted by Support on Jul 21, 2008 02:35
The tooltip can be set in XML by using "title" attribute of "cell" tag
    <row id="some id">
          <cell title=" any tooltip text here "> value </cell>

The same can be set from JS as
    grid.cells(i,j).setAttribute("title",new_value)