Represents the VueJS Tab Component.
<ejs-tab></ejs-tab>
boolean
Sets true to allow drag and drop the Tab items
Defaults to false
TabAnimationSettingsModel
Specifies the animation configuration settings while showing the content of the Tab.
Defaults to { previous: { effect: ‘SlideLeftIn’, duration: 600, easing: ‘ease’ },next: { effect: ‘SlideRightIn’, duration: 600, easing: ‘ease’ } }
string
Sets the CSS classes to root element of the Tab that helps to customize component styles.
Defaults to ”
string
Defines the area in which the draggable element movement will be occurring. Outside that area will be restricted for the draggable element movement. By default, the draggable element movement occurs in the toolbar.
Defaults to null
boolean
Defines whether to allow the cross-scripting site or not.
Defaults to false
boolean
Enable or disable persisting component’s state between page reloads. If enabled, following list of states will be persisted.
Defaults to false
boolean
Enable or disable rendering component in right to left direction.
Defaults to false
HeaderPosition
Specifies the orientation of Tab header. The possible values for this property as follows
Top
: Places the Tab header on the top.Bottom
: Places the Tab header at the bottom.Left
: Places the Tab header on the left.Right
: Places the Tab header at the right.Defaults to ‘Top’
string
| number
Specifies the height of the Tab component. By default, Tab height is set based on the height of its parent. To use height property, heightAdjustMode must be set to ‘None’.
Defaults to ‘auto’
HeightStyles
Specifies the height style for Tab content. The possible values for this property as follows
None
: Based on the given height property, the content panel height is set.Auto
: Tallest panel height of a given Tab content is set to all the other panels.Content
: Based on the corresponding content height, the content panel height is set.Fill
: Based on the parent height, the content panel height is set.Defaults to ‘Content’
TabItemModel[]
An array of object that is used to configure the Tab component.
let tabObj: Tab = new Tab( {
items: [
{ header: { text: 'TabItem1' }, content: 'Tab Item1 Content' },
{ header: { text: 'TabItem2' }, content: 'Tab Item2 Content' }
]
});
tabObj.appendTo('#tab');
Defaults to []
string
Overrides the global culture and localization value for this component. Default global culture is ‘en-US’.
Defaults to ”
OverflowMode
Specifies the Tab display mode when Tab content exceeds the viewing area. The possible modes are:
Scrollable
: All the elements are displayed in a single line with horizontal scrolling enabled.Popup
: Tab container holds the items that can be placed within the available space and rest of the items are moved to the popup.
If the popup content overflows the height of the page, the rest of the elements can be viewed by scrolling the popup.Defaults to ‘Scrollable’
boolean
Determines whether to re-order tab items to show active tab item in the header area or popup when OverflowMode is Popup. True, if active tab item should be visible in header area instead of pop-up. The default value is true.
Defaults to true
number
Specifies the scrolling distance in scroller.
Defaults to null
number
Specifies the index for activating the current Tab item.
let tabObj: Tab = new Tab( {
selectedItem: 1,
items: [
{ header: { text: 'TabItem1' }, content: 'Tab Item1 Content' },
{ header: { text: 'TabItem2' }, content: 'Tab Item2 Content' }
]
});
tabObj.appendTo('#tab');
Defaults to 0
boolean
Specifies whether to show the close button for header items to remove the item from the Tab.
Defaults to false
string
| number
Specifies the width of the Tab component. Default, Tab width sets based on the width of its parent.
Defaults to ‘100%’
Adds new items to the Tab that accepts an array as Tab items.
Parameter | Type | Description |
---|---|---|
items | TabItemModel[] |
An array of item that is added to the Tab. |
index (optional) | number |
Number value that determines where the items to be added. By default, index is 0. |
Returns void
Removes the component from the DOM and detaches all its related event handlers, attributes and classes.
Returns void
Specifies the value to disable/enable the Tab component.
When set to true
, the component will be disabled.
Parameter | Type | Description |
---|---|---|
value | boolean |
Based on this Boolean value, Tab will be enabled (false) or disabled (true). |
Returns void
Enables or disables the specified Tab item. On passing value as false
, the item will be disabled.
Parameter | Type | Description |
---|---|---|
index | number |
Index value of target Tab item. |
value | boolean |
Boolean value that determines whether the command should be enabled or disabled. By default, isEnable is true. |
Returns void
Gets the item index from the Tab.
Parameter | Type | Description |
---|---|---|
tabItemId | string |
Item ID is used for getting index from the Tab. |
Returns number
Shows or hides the Tab that is in the specified index.
Parameter | Type | Description |
---|---|---|
index | number |
Index value of target item. |
value (optional) | boolean |
Based on this Boolean value, item will be hide (false) or show (true). By default, value is true. |
Returns void
Refresh the tab component
Returns void
To refresh the active tab contents.
Returns void
To refresh the active tab indicator.
Returns void
Removes the items in the Tab from the specified index.
Parameter | Type | Description |
---|---|---|
index | number |
Index of target item that is going to be removed. |
Returns void
Specifies the index or HTMLElement to select an item from the Tab.
Parameter | Type | Description |
---|---|---|
args | number | HTEle |
Index or DOM element is used for selecting an item from the Tab. |
event (optional) | Event |
An event which takes place in DOM. |
Returns void
EmitType<AddEventArgs>
The event will be fired after adding the item to the Tab.
EmitType<AddEventArgs>
The event will be fired before adding the item to the Tab.
EmitType<Event>
The event will be fired once the component rendering is completed.
EmitType<Event>
The event will be fired when the component gets destroyed.
EmitType<DragEventArgs>
The event will be fired after dropping the Tab item
EmitType<DragEventArgs>
The event will be fired while dragging the Tab item
EmitType<DragEventArgs>
The event will be fired before dragging the item from Tab
EmitType<RemoveEventArgs>
The event will be fired after removing the item from the Tab.
EmitType<RemoveEventArgs>
The event will be fired before removing the item from the Tab.
EmitType<SelectEventArgs>
The event will be fired after the item gets selected.
EmitType<SelectingEventArgs>
The event will be fired before the item gets selected.