Problem with grid.parse()

Hi,

No results are showing in the grid after a grid.parse() with xml returned via ajax from the server.

A test page is at: bizconnector.com/admin/test_ … _grid.html

HTML Contents:

Test Dhtmlx Users Not Up To Date

What am I doing wrong?

Thanks

Colin Goldberg

Try to replace

dhtmlx_grid1.parse(xml_response);

with

dhtmlx_grid1.parse(xml_response.xmlDoc.responseXML);

Hi Stanislav,

I changed the line to:
dhtmlx_grid1.parse(loader.xmlDoc.responseXML);

but it did not work. Thanks for your suggestion, though.