May have found a bug, or at least it was unexpected behavior for me.
If I am on "Tab2" and click "Tab1" but quickly click back to "Tab2" before the animation is complete it loads my partial view (from the controller action) outside of the tabstrip and overwrites the page content. I was able to reproduce with the default animation set up.
@(Html.Kendo().TabStrip()
.Name(
"tabStrip"
)
.Items(tabs =>
{
tabs.Add().Text(
"Tab1"
).Content(@<text>some content</text>).Selected(
true
);
tabs.Add().Text(
"Tab2"
).LoadContentFrom(
"Action"
,
"Controller"
);
})
)
If I am on "Tab2" and click "Tab1" but quickly click back to "Tab2" before the animation is complete it loads my partial view (from the controller action) outside of the tabstrip and overwrites the page content. I was able to reproduce with the default animation set up.