Hi Me,
Thanks for the update.
You can hide the tab bar by using CssClass property. To hide a tab bar, you should assign a value for CssClass property and inherit the tab bar by using. e-tab .e-header .Please refer to the code example:
<code>
<style>
.tabcssclass.e-tab .e-header{
display:none;
}
</style>
</code> |
To switch a tab item, you can use the public method of showItem. Please refer to the below code example:
<code>
onTabSwitch(event) {
let target = jQuery('#tabid).data('ejTab');
target.showItem(1);
}
</code> |
Regards,
Karthikeyan V.