Hi Moez,
Greetings from Syncfusion Support.
To disable the animation effects in tab component kindly refer the following code.
<ejs-tab id="defaultTab" animation="ViewBag.animation">
<e-tab-tabitems>
<e-tab-tabitem header="ViewBag.headerTextOne" content="witter is an online social networking service that enables users to send and read short 140-character messages called tweets."></e-tab-tabitem>
<e-tab-tabitem header="ViewBag.headerTextTwo" content="Facebook is an online social networking service headquartered in Menlo Park, California"></e-tab-tabitem>
<e-tab-tabitem header="ViewBag.headerTextThree" content="WhatsApp Messenger is a proprietary cross-platform instant messaging client for smartphones that operates under a subscription business model."></e-tab-tabitem>
</e-tab-tabitems>
</ejs-tab>
var obj1 = new TabNextTab { Effect = "none" };
ViewBag.animation = new TabTabAnimationSettings { Next = obj1 , Previous = obj1 }; |
There is no default styles to add the border to content but we can achieve it through CSS which can be referred from the following sample.
.e-tab .e-content > .e-item.e-active {
border: 1px solid #969696;
} |
Please let us know if you need any further assistance.
Regards,
Nevitha