Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by D Sri Janani on May 28, 2008 22:04
open dhtmlx forum
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
Answer posted by Support on May 29, 2008 03:50
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.

Answer posted by D Sri Janani on May 29, 2008 04:23
Thank you. This is working now