projects/components/widgets/input/default/src/button/button.component.doc.ts
The wmButton component defines the button widget.
Methods |
Inputs |
onBlur | ||||||||||||
onBlur($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the widget loses focus.
Parameters :
Returns :
void
|
onClick | ||||||||||||
onClick($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the widget is clicked.
Parameters :
Returns :
void
|
onDblclick | ||||||||||||
onDblclick($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the widget is double clicked.
Parameters :
Returns :
void
|
onDoubletap | ||||||||||||
onDoubletap($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the double tap event occurs on button widget.
Parameters :
Returns :
void
|
onFocus | ||||||||||||
onFocus($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the widget gets focused.
Parameters :
Returns :
void
|
onKeydown | ||||||||||||
onKeydown($event: KeyboardEvent, widget: any)
|
||||||||||||
Callback function which will be triggered whenever a key is pressed down.
Parameters :
Returns :
void
|
onKeypress | ||||||||||||
onKeypress($event: KeyboardEvent, widget: any)
|
||||||||||||
Callback function which will be triggered whenever a key is pressed.
Parameters :
Returns :
void
|
onKeyup | ||||||||||||
onKeyup($event: KeyboardEvent, widget: any)
|
||||||||||||
Callback function which will be triggered whenever a key is released.
Parameters :
Returns :
void
This method does not return anything |
onMouseenter | ||||||||||||
onMouseenter($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the mouse enters the widget.
Parameters :
Returns :
void
|
onMouseleave | ||||||||||||
onMouseleave($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the mouse leaves the widget.
Parameters :
Returns :
void
|
onTap | ||||||||||||
onTap($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the tap event occurs on button widget.
Parameters :
Returns :
void
|
badgevalue |
Type : string
|
This property specifies the value to be displayed along with the label of the button. Bindable: |
caption |
Type : string
|
This property specifies the label of the button. Bindable: |
class |
Type : string
|
Default value : 'btn-default'
|
Class of the widget. |
conditionalclass |
Type : string
|
This property allows user to bind expression to class property. Bindable: |
disabled |
Type : boolean
|
This property will be used to disable/enable the button widget on the web page. Bindable: |
hint |
Type : string
|
Hint text is shown for the button widget on hover. Bindable: |
iconclass |
Type : string
|
CSS class of the icon. |
iconheight |
Type : string
|
height of the icon. |
iconmargin |
Type : string
|
margin of the icon. |
iconposition |
Type : string
|
Property to set the position of icon in the widget. Allowed Values:
|
iconurl |
Type : string
|
url of the icon. |
iconwidth |
Type : string
|
width of the icon. |
name |
Type : string
|
Name of the button widget. |
shortcutkey |
Type : string
|
The shortcut key property specifies a shortcut key to activate/focus an element. |
show |
Type : boolean
|
Default value : true
|
This property will be used to show/hide the button widget on the web page. Bindable: |
tabindex |
Type : number
|
Default value : 0
|
This property specifies the tab order of the Button Widget. |
type |
Type : string
|
Type of the button widget. Allowed Values:
|