Breadcrumbs (Bootstrap): Difference between revisions
Jump to navigation
Jump to search
Created page with "file:Bsbreadcrumbs.png == Description == == Properties and Methods == Standard properties are supported, plus: {| class="wikitable" |- | appe..." |
|||
Line 2: | Line 2: | ||
== Description == | == Description == | ||
Indicate the current page's location within a navigational hierarchy. | |||
When you navigate through pages using the ChangeForm function, they automatically get added to the Breadcrumb. You can display it at the top of your screen. This gives the user an easy way to tell where they are in complex, multi level apps, as well as an easy way to navigate back through your app. | |||
== Properties and Methods == | == Properties and Methods == |
Revision as of 20:51, 31 May 2016
Description
Indicate the current page's location within a navigational hierarchy.
When you navigate through pages using the ChangeForm function, they automatically get added to the Breadcrumb. You can display it at the top of your screen. This gives the user an easy way to tell where they are in complex, multi level apps, as well as an easy way to navigate back through your app.
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");
};