TabView – Template

From Bohemia Interactive Community
Revision as of 06:04, 30 October 2021 by Lou Montana (talk | contribs) (Fix examples)
Jump to navigation Jump to search

This template allows for horizontal tabs.

This template is used on these pages.

Usage

{{TabView|title1..5|content1..5|selected}}

  • title1..5: named parameter - tab #'s title
  • content1..5: named parameter - tab #'s content
  • selected: named parameter - selected tab (not 0-based index, e.g 1 = first tab, 2 = second etc)
Examples
Code Result
{{Tabs}}
{{TabView |title1= Tab 1 title}}
Tab 1 title
{{TabView |title1= Tab 1 title |content1= First tab content, yay!}}
Tab 1 title
First tab content, yay!
{{Tabs |title1= Tab 1 title |title2= Tab 2 title}}
Tab 1 title
Tab 2 title
{{TabView |title1= Tab 1 title |content1= First tab content... |title2= Tab 2 title |content2= Second tab content, yay!}}
Tab 1 title
Tab 2 title
First tab content...
Second tab content, yay!
{{TabView |selected= 2 |title1= Tab 1 title |content1= First tab content... |title2= Tab 2 title |content2= Second tab content, yay!}}
Tab 1 title
Tab 2 title
First tab content...
Second tab content, yay!