The server side only output one format for xml?

hello,
I used Connector for Java,the code:
on HTML
var mygrid = dhtmlxLayout.cells(“b”).attachGrid();
mygrid.setImagePath(“…/common/imgs/”);
mygrid.enableSmartRendering(true);
mygrid.enableMultiselect(true);
mygrid.init();
mygrid.enableCellIds(true);
mygrid.load(“./acton.do”);
var dp = new dataProcessor(“./action.do”);
dp.enableDataNames(true);
dp.init(mygrid);
on Server side:
GridConnector c = new GridConnector(conn, DBType.PostgreSQL);
GridConfiguration config = new GridConfiguration();

c.setConfiguration(config);
then,I got the data was like value
I want to got like value
How to do?

Unfortunately, connector can output only one format of XML data.
If you are using connector with DHTMLX components, there is no benefits in using different XML formats.