DHTML Tree

DHTML Tree nodes are not displayed if node name has & special character ie



if my node name is testfolder it displays



but if node name is test&Folder not & in the folder name



the node nme is not displayed



How to overcome this

The tree component treats incoming data as HTML., and in HTML sequences started from & treated as special chars.  
To solve problem you can escape it
    grid.setItemText(id,“test&Folder”);
or, in case of xml
   
or
    <![CDATA[
        test&Folder
    ]]>