Easy way(my way ;-) is to implement HistoryListener interface and
change tabs there:

public void onHistoryChanged(String historyToken)
{
   if(historyToken.equals(YOUR_TOKEN)) {
     tabPanel.selectTab(TAB);
   }
}

The interface may has changed in the last release, but you've got the
idea.

On 6 Okt., 14:50, "olivier nouguier" <[EMAIL PROTECTED]>
wrote:
> hi,http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g...
> hih
> On Mon, Oct 6, 2008 at 2:38 PM, nicolas.deloof <[EMAIL PROTECTED]>wrote:
>
>
>
> > Hello,
>
> > My GWT app uses a tabbedPannel layout, and I'd like to select the
> > default active one based on requested URL, so that I can create links
> > to the desired URL from traditional HTML (http://
> > myModule.html#someTab).
>
> > I can"t find how to get the requested URL from EntryPoint
>
> > Nicolas
>
> --
> "Quand le dernier arbre sera abattu, la dernière rivière asséchée, le
> dernier poisson péché, l'homme va s'apercevoir que l'argent n'est pas
> comestible"
>      - proverbe indien Cri
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to