SmartGWT 3.0 original release and 3.0p 2012-08-24
Firefox 14.0.1
Trying to reload an IPickTreeItem (our screen has a refresh button that when pressed should reload the control, picking up any changes outside the screen).
Currently doing the following against the DataSource to force a reload:
And doing a .fetchData() against the IPickTreeItem.
According to the developer console, the correct revised data is being retrieved upon hitting our refresh button and executing this code. However, clicking on the IPickTreeItem control itself shows the old data and doesn't reflect the revised data retrieved.
Wanted to see if I was missing something before trying to post a standalone test case to demonstrate the problem.
Ed Reddy
Firefox 14.0.1
Trying to reload an IPickTreeItem (our screen has a refresh button that when pressed should reload the control, picking up any changes outside the screen).
Currently doing the following against the DataSource to force a reload:
Code:
DSResponse response = new DSResponse(); response.setInvalidateCache(true); ds.updateCaches(response);
According to the developer console, the correct revised data is being retrieved upon hitting our refresh button and executing this code. However, clicking on the IPickTreeItem control itself shows the old data and doesn't reflect the revised data retrieved.
Wanted to see if I was missing something before trying to post a standalone test case to demonstrate the problem.
Ed Reddy
Comment