tags:

views:

100

answers:

2

Hi

I am using GWT and would like to develop a vertical tab panel like the one in iGoogle.

How can the same be achieved ?

A: 

you can use ext-js's vertical tabs - see this demo http://iamtotti.com/playground/js/ext-3.1.1/examples/tabs/tabs.html

there is a gwt port of ext-js which you can use : http://code.google.com/p/gwt-ext/

Smart gwt also has a vertical tab implementation (its different to gwt-ext's) - http://www.smartclient.com/smartgwt/showcase and search for orientation on the left menu.

Chii
yeah this seems to be working
Anand
A: 

I think what you're looking for is the TabLayoutPanel (scroll down a bit). It works great and it's a vanilla GWT widget, no third party libraries required.

Arthur Kalmenson
Yes but it is a horizontal tab layout panel !!
Anand
Sorry about that, I misunderstood the question. It's very easy to build a horizontal tab panel with links and CSS. Using a full third party toolkit (not really GWT at that point) might be overkill. Not sure if you really needed to down vote me :(
Arthur Kalmenson