Hi all,

I'm trying to integrate the jQuery jQGrid Plugin in Click. 
There are two ways to loading data in the datagrid :
one by JSON
one by XML

I created a Click Page which have to generate an XML flow with this format : 

<?xml version="1.0" encoding="utf-8" ?> 
<rows>
  <page /> 
  <total /> 
  <records>2</records> 
<row id="1">
<cell>1</cell> 
<cell>
<![CDATA[ ARGENTEUIL]]> 
</cell>
</row>
<row id="2">
<cell>2</cell> 
<cell>
<![CDATA[ LOUVRES]]></cell>
</row>
</rows>

the html code page is $jsonString which contains the string below (xml file)

When i launch this page, the display result is : 512345 ? and 
i have no result in my datagrid
The source code of the page is good --> XML Code
Why the Click Servlet doesn't translate the XML ?

Thanks in advance

Reply via email to