Browse Source
Merge pull request #18907 from muhlisatac/patch-3
Update Buttons.md Add busy-text usage to abp-button tag helper.
pull/18910/head
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
13 additions and
1 deletions
-
docs/en/UI/AspNetCore/Tag-Helpers/Buttons.md
|
|
|
@ -56,6 +56,18 @@ A value indicates the size of the button. Should be one of the following values: |
|
|
|
|
|
|
|
A text that is shown when the button is busy. |
|
|
|
|
|
|
|
To be able to make the button busy: |
|
|
|
|
|
|
|
````xml |
|
|
|
$('#btnTest').buttonBusy(true); |
|
|
|
```` |
|
|
|
|
|
|
|
To make it usable again: |
|
|
|
|
|
|
|
````xml |
|
|
|
$('#btnTest').buttonBusy(false); |
|
|
|
```` |
|
|
|
|
|
|
|
### text |
|
|
|
|
|
|
|
The text of the button. This is a shortcut if you simply want to set a text to the button. Example: |
|
|
|
@ -83,4 +95,4 @@ If you don't want to use font-awesome, you have two options: |
|
|
|
|
|
|
|
### disabled |
|
|
|
|
|
|
|
Set `true` to make the button initially disabled. |
|
|
|
Set `true` to make the button initially disabled. |
|
|
|
|