PDA

View Full Version : History model in GXT 1.1


rmemoria
09-20-2008, 07:47 PM
Hi,

I've updated from 1.0.3 to 1.1.

In the previous version I had something like that at the end of RootPanel.get().add(view);

public void onModuleLoad() {
NavigatorControl navgatorControl = new NavigatorControl();
..
..
..

RootPanel.get().add(view);
navigatorControl.updateView();
}

navigatorControl updates the view according to the History.getToken().

But now it seems that the onRender is called just after the onModuleLoad() is called, and the view is not updated according to the url #blablabla

Do you have any tip on how to restore the initial view according to the history?

Regards,
Ricardo