Breadcrumbs (Bootstrap)

From NSB App Studio
Revision as of 20:43, 31 May 2016 by Ghenne (talk | contribs) (Created page with "file:Bsbreadcrumbs.png == Description == == Properties and Methods == Standard properties are supported, plus: {| class="wikitable" |- | appe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

Properties and Methods

Standard properties are supported, plus:

appearance Appearance of the alert. Can be success, info, warning, danger.
badge Adds a Badge to the alert.
dismissable Add an x to dismiss the alert?
value The title of the button. Design time or runtime.

Events

Standard events are supported. For this control, the onclick event will be most useful.

Example (Basic)

Function Alert2_onclick()

 MsgBox "You can display a message or take other action when clicked"

End Function

Example (JavaScript)

Alert1.onclick = function() {

   NSB.MsgBox("You can display a message or take other action when clicked");

};

Output