_DC.Tabs🔗 Dyalog Tabs widget

Constructor: [titles [sections]] | [titles_sections]

titles – vector of char vectors containing titles to appear on tabs

sections – vector of vectors containing HTML content for each tab

titles_sections – 2-column matrix of titles [;1] and tabs [;2] as above or vector of 2 element title/tab vectors

Public Fields:

Titles – vector of char vectors containing titles to appear on tabs

Sections – vector of vectors containing HTML content for each tab

Theme – base color for the color theme (default '#808080')

Examples:

Tabs 'Title1' 'Title2'

Tabs ('Title1' 'Title2')('Section1' 'Section2')

Tabs 2 2⍴'Title1' 'Section1' 'Title2' 'Section2'

Notes:

This control is implemented in HTML+CSS without any JavaScript and is therefore extremely lightwight, resulting in faster load times. However, this comes at the cost of fewer features compared to competing controls. Use it if you just need basic Tabs.–

Relevant Sample Pages:

Controls used on this page: Dyalog: Tabs Base HTML: style