// JavaScript
Button1.onclick = function () {
Spinner1.show();
};
Button2.onclick = function () {
Spinner1.hide();
};
Created page with "file:Bsalert.png == Description == Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages. By setting the appearance, alerts can have different colors. Turning dismissable on will add an x to the control. Clicking on it will cause the alert to be hidden, and your app will reformat to use the space which has been freed up. == Properties and Methods == Standard properties a..." |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[ | [[File:Spinner.png]] | ||
== Description == | == Description == | ||
Indicate the loading state of a component or page. | |||
== Properties and Methods == | == Properties and Methods == | ||
Line 12: | Line 11: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| | | bgColor || Show a standard spinner or a growing icon. | ||
|- | |- | ||
| | | growing || Show a standard spinner or a growing icon. | ||
|- | |- | ||
| | | showText || Show the text which spins along? | ||
|- | |- | ||
| | | size || Default size, or a bit smaller | ||
|- | |||
| text || The text of the spinner. 'showText' turns it off. | |||
|} | |} | ||
Line 31: | Line 32: | ||
<syntaxhighlight lang="JavaScript"> | <syntaxhighlight lang="JavaScript"> | ||
// JavaScript | // JavaScript | ||
Button1.onclick = function () { | |||
Spinner1.show(); | |||
}; | |||
Button2.onclick = function () { | |||
Spinner1.hide(); | |||
}; | }; | ||
Line 40: | Line 45: | ||
<syntaxhighlight lang="vb.net"> | <syntaxhighlight lang="vb.net"> | ||
' Basic | ' Basic | ||
Function Button1_onclick() | |||
Spinner1.show() | |||
End Function | |||
Function Button2_onclick() | |||
Spinner1.hide() | |||
End Function | End Function | ||
</syntaxhighlight> | </syntaxhighlight> |
Indicate the loading state of a component or page.
Standard properties are supported, plus:
bgColor | Show a standard spinner or a growing icon. |
growing | Show a standard spinner or a growing icon. |
showText | Show the text which spins along? |
size | Default size, or a bit smaller |
text | The text of the spinner. 'showText' turns it off. |
Standard events are supported. For this control, the onclick event will be most useful.
// JavaScript
Button1.onclick = function () {
Spinner1.show();
};
Button2.onclick = function () {
Spinner1.hide();
};
' Basic
Function Button1_onclick()
Spinner1.show()
End Function
Function Button2_onclick()
Spinner1.hide()
End Function