I`m using kendo for mvc. I have tabstrip with five tabs.
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Events(builder => builder.Select("onSelect"))
.Items(tabstrip =>
{ tabstrip.Add()....
tabstrip.Add()....
tabstrip.Add()....
tabstrip.Add()....
tabstrip.Add()....}
So, I need to reload one of the tab (item) without reloading tabstrip at all. How can I do this?
P.S. I already have event .Select that represent special logic, thats why I can`t change it.