projects/components/base/src/widgets/common/container/container.directive.doc.ts
The wmContainer
directive defines a container widget.
Methods |
Inputs |
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 is triggered on a widget.
Parameters :
Returns :
void
|
onLoad | ||||||||
onLoad(widget: any)
|
||||||||
This event handler is called when the widget is loaded.
Parameters :
Returns :
void
|
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
|
onMouseout | ||||||||||||
onMouseout($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the mouse moves away from this widget.
Parameters :
Returns :
void
|
onMouseover | ||||||||||||
onMouseover($event: MouseEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when the mouse hovers over the widget.
Parameters :
Returns :
void
|
onPinchin | ||||||||||||
onPinchin($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when a pinchin event is triggered.
Parameters :
Returns :
void
|
onPinchout | ||||||||||||
onPinchout($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when a pinchout event is triggered.
Parameters :
Returns :
void
|
onSwipedown | ||||||||||||
onSwipedown($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when a swipedown event is triggered.
Parameters :
Returns :
void
|
onSwipeleft | ||||||||||||
onSwipeleft($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when a swipeleft event is triggered.
Parameters :
Returns :
void
|
onSwiperight | ||||||||||||
onSwiperight($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when a swiperight event is triggered.
Parameters :
Returns :
void
|
onSwipeup | ||||||||||||
onSwipeup($event: TouchEvent, widget: any)
|
||||||||||||
Callback function which will be triggered when a swipeup event is triggered.
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
|
class |
Type : string
|
Class of the widget. |
conditionalclass |
Type : string
|
This property allows user to bind expression to class property. Bindable: |
content |
Type : string
|
Default value : 'Inline Content'
|
Sets content for the container. Allowed Values:
|
horizontalalign |
Type : string
|
This property specifies how the elements should be aligned horizontally. Allowed Values:
|
name |
Type : string
|
Name of the container widget. |
show |
Type : boolean
|
Default value : true
|
This property will be used to show/hide the container widget on the web page. |