The button component puts a button on your form. Usually it is part of a form and will be used to submit your form data to your application.
Property | Description | Values |
Active | Button is in use | true, false |
ButtonClass | Button class as described in the bootstrap manual | btn-default,btn-primary,btn-success,btn-info,btn-warning,btn-danger,btn-link,btn-lg,btn-sm,btn-xs,btn-block |
ButtonType | Button, to be used in javascript events or submit to submit a form | button, submit |
Enabled | Shows button as enabled or disabled (grayed) | true,false |
Glyphicon | Image within the button. | Use names as documented in the Bootstrap 3 documentation. |
Label | Text to be displayed inside the button | string |
Top | Location of component in the designer. No function within bootstrap | integer |
Owner | Owner of the component | read-only |
Width | The width of the button in the designer. No function within bootstrap. | integer |
Height | The height of the button in the designer. No function within bootstrap. | integer |
Property | Description |
onActivate | Triggers when all components are created |
onClick | Triggers when the user clicks on the button |
onCreate | Triggers when the component is created |
onDestroy | Triggers when the component is destroyed |
Property | Description |
onClick | Triggers when the user clicks the button. Clicking leads to an ajax call to the server event onClick |