Mohamed Saligh
Mohamed Saligh

Reputation: 12349

Vertical style accordion using vaadin

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

Upvotes: 0

Views: 3481

Answers (2)

Basil Bourque
Basil Bourque

Reputation: 338624

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

Upvotes: 1

Jon Onstott
Jon Onstott

Reputation: 13727

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?

Upvotes: 0

Related Questions