1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-04 03:03:18 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/macros/TabsMacro.tid

35 lines
1.5 KiB
Plaintext
Raw Normal View History

2013-12-28 17:57:11 +00:00
created: 20131228162203521
modified: 20140702113527667
2013-11-21 17:32:24 +00:00
tags: macros
2013-12-28 17:57:11 +00:00
title: TabsMacro
type: text/vnd.tiddlywiki
2013-11-21 17:32:24 +00:00
2014-02-26 08:27:40 +00:00
The tabs macro displays a list of tiddlers as a tab control. The user can switch between tabs by clicking on them. The tabs are labelled with the title of the corresponding tiddler, unless there is a `caption` field present in which case it is used instead.
2013-11-21 17:32:24 +00:00
By default the tab control arranges the tabs horizontally with the content underneath. You can also choose to have the tabs arranged vertically by passing the class `tw-vertical`.
2013-11-21 17:32:24 +00:00
! Parameters
|!Position |!Name |!Description |!Default |
|1st |tabsList |Filter giving the tiddlers to be displayed | |
|2nd |default |Name of the tiddler containing the default tab | |
2014-02-26 08:27:40 +00:00
|3rd |state |String to distinguish multiple tabs within the same tiddler (use of the system tiddler prefix is recommended) |''$:/state/tab'' |
|4th |class |Additional CSS classes for the three wrappers DIV of the tab | |
|5th |template |Optional template through which to render the tab content | |
2013-11-21 17:32:24 +00:00
Within the template the title of the current tab is available in the widget variable ''currentTab''.
2013-11-21 17:32:24 +00:00
! Examples
2014-07-25 07:45:57 +00:00
Here are some examples of the tabs macro:
2013-11-21 17:32:24 +00:00
2013-12-28 17:57:11 +00:00
```
2014-07-25 07:49:58 +00:00
<<tabs "SampleTabOne SampleTabTwo SampleTabThree SampleTabFour" "SampleTabThree" "$:/state/tab1">>
2014-07-25 07:45:57 +00:00
2014-07-25 07:49:58 +00:00
<<tabs "[tag[sampletab]]" "SampleTabTwo" "$:/state/tab2" "tw-vertical">>
2013-12-28 17:57:11 +00:00
```
2014-07-25 07:49:58 +00:00
<<tabs "SampleTabOne SampleTabTwo SampleTabThree SampleTabFour" "SampleTabThree" "$:/state/tab1">>
2013-11-21 17:32:24 +00:00
2014-07-25 07:49:58 +00:00
<<tabs "[tag[sampletab]]" "SampleTabTwo" "$:/state/tab2" "tw-vertical">>