~TabTag

This tag help to define a JSPWiki page tab. It works together with TabbedSectionTag.

Usage

<wiki:Tab id=".." title=".." accesskey="..">
    ..
  </wiki:Tab>

Parameters

  • id : unique id for this tab (mandatory)
  • title : title of this tab (mandatory)
  • accesskey : accesskey for this tab (optional): this key in combination with alt- or cmnd-
    can be used to active a tab with a single keystroke.
    When present, the first occurence of the accesskey inside the title will be underscored
    as a visual hint for the accesskey.

Example

<wiki:Tab id="pageContent" title="View" accesskey="v">
    ..
  </wiki:Tab>
----