// JavaScript
Tabs1.onclick = function(i) {
if (typeof i == "object") return;
NSB.MsgBox("Tab chosen: " + Tabs1.value);
};
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 40: | Line 40: | ||
Standard [[events|events]] are supported. For this control, the onclick event will be most useful. | Standard [[events|events]] are supported. For this control, the onclick event will be most useful. | ||
== Example ( | == Example == | ||
< | |||
<tabber> | |||
JavaScript= | |||
<syntaxhighlight lang="JavaScript"> | |||
// JavaScript | |||
Tabs1.onclick = function(i) { | |||
if (typeof i == "object") return; | |||
NSB.MsgBox("Tab chosen: " + Tabs1.value); | |||
}; | |||
</syntaxhighlight> | |||
|-| | |||
BASIC= | |||
<syntaxhighlight lang="vb.net"> | |||
' Basic | |||
Function Tabs1_onclick(i) | Function Tabs1_onclick(i) | ||
If TypeName(i) = "object" Then Exit Function | If TypeName(i) = "object" Then Exit Function | ||
MsgBox "Tab chosen: " + Tabs1.value | MsgBox "Tab chosen: " + Tabs1.value | ||
End Function | End Function | ||
</ | </syntaxhighlight> | ||
</tabber> | |||
</ | |||
== Output == | == Output == | ||
Line 64: | Line 70: | ||
[[Category:Bootstrap]] | [[Category:Bootstrap]] | ||
This control is Bootstrap 3 only. Use Navs in Bootstrap 4.
Provide tab links for your site or app with customizable appearance.
Popovers and Tooltips are supported.
Standard properties are supported, plus:
addItem(item, type) | Adds an item to the end. type can be "active" or "disabled" . Runtime. |
clear() | Clears all items. Runtime. |
enable([index,]bool) | Enables and disables items. Index can be an item or an array of items. If no index supplied, all items are affected. Bool is true or false. Runtime only. |
items | Items to show, one per line. Prefix * for disabled, > for selected, ! for heading (not all controls support headings). Design Time. |
justified | Make tabs or pills equal widths of their parent at screens wider than 768px. On smaller screens, the nav links are stacked. Design Time. |
length | Current number of items. Runtime. |
pills | Show tabs highlighted with Pill format? tabs or pills. Runtime. |
text | Get the text of the active tab. Runtime. |
value | Get and set the active tab. Runtime. |
vertical | Show Tabs/Pills vertically? (If so, >selected only works for Pills.). Design Time. |
Standard events are supported. For this control, the onclick event will be most useful.
// JavaScript
Tabs1.onclick = function(i) {
if (typeof i == "object") return;
NSB.MsgBox("Tab chosen: " + Tabs1.value);
};
' Basic
Function Tabs1_onclick(i)
If TypeName(i) = "object" Then Exit Function
MsgBox "Tab chosen: " + Tabs1.value
End Function