Question

I am using vaadin framework, I can use the com.vaadin.ui.Accordion library for Accordion. By default it appears in horizontal style. Is there any idea of using this style in vertical form?

Thanks

Was it helpful?

Solution

From http://vaadin.com/api/com/vaadin/ui/Accordion.html:

An accordion is a component similar to a TabSheet, but with a vertical orientation and the selected component presented between tabs

Do you mean you want it to be horizontal instead of vertical?

OTHER TIPS

An Accordion is a TabSheet, a subclass of TabSheet, as documented in the API.

TabSheet is meant for horizontal use, Accordion for vertical use.

TabSheet screenshot:

enter image description here

Accordion screenshot:

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top