Tree CDATA

HI!, i need to create a Tree Node via Javascript, but it must have HTML content, i can do this when i load a XML but how can i solve this Scripting?



This is what im trying to do:



tree.setItemText( sid , “<![CDATA[

TESTING
]]>” );



Regards,

Try to don’t use CDATA tag and the following command should work correctly:

    tree.setItemText( sid , “

TESTING
” );