Re: How to handle Browser History using UiBinder ?

2011-12-01 Thread saida dhanavath
Hi, If you follow MVP or not is not a big matter here, I suggest you to use GWT's Activities and Places framework built only for history management needs. As Thomas said, UIBinder is nothing to do with history management. If you which widget container needs to be bookmarked, You can write Place

Re: How to handle Browser History using UiBinder ?

2011-11-30 Thread Alexandre Ardhuin
Hi, see http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHistory.html Alexandre 2011/11/30 suresh babu sureshgbab...@gmail.com Thank you for your quick reply, so how can I manage history without using MVP framework. On Tue, Nov 29, 2011 at 10:01 PM, Thomas Broyer

How to handle Browser History using UiBinder ?

2011-11-29 Thread suresh babu
Hi All, Can any one tell me how to handling Token with History using UiBinder (Without MVP). Any help would be greatly appreciated. Regards Suresh Babu G http://www.accountingguru.in/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: How to handle Browser History using UiBinder ?

2011-11-29 Thread Thomas Broyer
UiBinder is about generating widget/layout code from XML, it has nothing to do with handling navigation within your app; i.e. instead of writing: this.textBox = new TextBox(); this.textBox.setText(some text); this.textBox.addStyleName(cssResource.textbox()); String

Re: How to handle Browser History using UiBinder ?

2011-11-29 Thread suresh babu
Thank you for your quick reply, so how can I manage history without using MVP framework. On Tue, Nov 29, 2011 at 10:01 PM, Thomas Broyer t.bro...@gmail.com wrote: UiBinder is about generating widget/layout code from XML, it has nothing to do with handling navigation within your app; i.e.