Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Mar 07, 2007 12:07
open dhtmlx forum
When we get some special characters (&, <, >, etc) in the cell values it is giving error "Error l...

When we get some special characters (&, <, >, etc) in the cell values it is giving error "Error loading XML". Can u specify what we should use if get those values
Answer posted on Mar 07, 2007 12:16

If you’re initializing TreeGrid from XML, you need to generate valid XML document, the symbols &, <, > are illegal in XML content, you can escape them as &amp; &lt; &gt; or use CDATA sections

            <cell><![CDATA[  any content here &, <, >  ]]></cell>
Answer posted by sematik (Support) on Dec 08, 2014 18:15

I hope this information will be enough for you. But you also can have a look at vault file and ajax combobox sample.