Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
Thank you for your reply!
Yes you're right I can use the Tabstrip API but when I use this method another problem appears.
I can't "insertAfter" or "appen" cshtml file correctly thanks to the contentUrl.
So as you can see on my print screen file joined the Kendo and cshtml functions are not visible....
0
Vladimir Iliev
Telerik team
answered on 11 Jun 2014, 11:16 AM
Hi Bruno,
Basically the "append" method doesn't support second parameter - that why you should use the "insertAfter" method instead. Also as second parameter you should pass the first tab in the collection instead of it's parent "ul" element - please check the updated code below:
tabStrip.insertAfter(
[{
text: "_Validation",
contentUrl: "../../FicheQualite/test"
}],
tabStrip.tabGroup.children().eq(0))
Kind Regards,
Vladimir Iliev
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.