projects/components/widgets/input/default/src/select/select.component.doc.ts
The wmSelect component defines the select widget.
Methods |
Inputs |
onBlur | ||||||||||||
onBlur($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the widget loses focus.
Parameters :
Returns :
void
|
onChange | ||||||||||||||||||||
onChange($event: MouseEvent, widget: any, newVal: any, oldVal: any)
|
||||||||||||||||||||
Callback function which will be triggered when the widget is clicked or when datavalue has changed.
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
|
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 is triggered on a widget.
Parameters :
Returns :
void
|
autofocus |
Type : boolean
|
This property makes the element get focused automatically when the page loads. |
class |
Type : string
|
Class of the widget. |
datafield |
Type : string
|
This property sets the dataValue to be returned by the select widget when the list is populated using the dataSet property. |
datavalue |
Type : any
|
This property defines the initial selected value of the select widget. Bindable: |
disabled |
Type : boolean
|
This property will be used to disable the select widget.
If the disabled property is true (checked), the widget becomes display-only. Bindable: |
displayexpression |
Type : string
|
This is an advanced property that gives more control over what is displayed in the drop-down select list.
A Display Expression uses a JavaScript expression to format exactly what is shown Bindable: |
displayfield |
Type : string
|
This property sets the displayValue to show in the select widget when the list is populated using the dataSet property. |
hint |
Type : string
|
Hint text is shown of the select widget on hover. Bindable: |
multiple |
Type : boolean
|
When this value is set to true multiple options can be selected from select widget. |
name |
Type : string
|
Name of the select widget. |
orderby |
Type : string
|
Allows to display the data in asc or desc order based on this property |
placeholder |
Type : string
|
This property specifies the placeholder for the select. Bindable: |
readonly |
Type : boolean
|
This property will be used to make the select widget non-editable. Bindable: |
required |
Type : boolean
|
This property will be used to validate the state of the select widget when used inside a form widget. Bindable: |
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 select widget. Bindable: |
tabindex |
Type : number
|
Default value : 0
|
This property specifies the tab order of the select widget. |