Reloading grid in JSP from xml

Hi,



I am loading a Grid table in my JSP page using DHTMLX. The code works fine for the loading the page the first time. When i try reloading, though the xml is reloaded the change is not reflected in the JSP page. (we are using struts framework. Will this impact our implementation)



Regards



Janani

Which code you are using for grid’s reloading?
The standard approach is
    grid.clearAll();
    grid.loadXML(url);

The problem may  be caused by cache of browser.

Thank you. This is working now