Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Steve Boulay on Jun 07, 2009 23:37
open dhtmlx forum
dhmtlXTree : plus and minus icon

Hello,

In the tree we can disable Tree Lines but how we can disable or hidden plus and minus icon ?

Thanks

Steve Boulay
Answer posted by Support on Jun 08, 2009 01:58
You can't fully remove plus|minus icons ( tree has not much sense without them ) 
The icons can be removed for some items by using
           tree.showItemSign(id,false)
but there is no option , which will hide icons for all items in the tree.
Answer posted by Support on Jun 08, 2009 01:58
You can try to use 
     tree.enableTextSigns(true);

and define next css rule

.dhx_tree_textSign{
   display:none;
}