问题描述
@(Html.Kendo()。TabStrip()
.Name(tabstrip)
.Events(events = >活动
。选择(onSelect)
)
。动画(动画=>
{
animation.Enable(false);
}))
我正在使用此代码禁用kendo tabstrip选项卡的动画,但上面的codde不适用于我禁用kendo标签式动画
我尝试过:
@(Html.Kendo()。TabStrip()
.Name(tabstrip)
。活动(events => events
。选择(onSelect)
)
。动画(动画=>
{
动画。启用(false);
}))
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Events(events => events
.Select("onSelect")
)
.Animation(animation =>
{
animation.Enable(false);
}))
I am using this code to disable the animation for kendo tabstrip tabs but the above codde is not working for me to disable kendo tabstrip animation
What I have tried:
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Events(events => events
.Select("onSelect")
)
.Animation(animation =>
{
animation.Enable(false);
}))
推荐答案
<div id="tabstrip"></div>
和在你的js:
and in your js:
这篇关于Kendo ui MVC禁用tabtrip动画?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!