禁止点击 TabContainer 中的 tabPanel
我想禁用单击并从一个选项卡面板转到另一个选项卡面板。就像这里http://www.eldan.co.il/en/ 用户可以'选择另一个步骤。我尝试了这样的东西
if (Tabs.ActiveTabIndex == 0) { Tabs.Tabs[1].Enabled = false; }
但它隐藏了选项卡...
I want to disable clicking and going from one tabPanel to another. Like here http://www.eldan.co.il/en/ the user can't select another step. I tried something like this
if (Tabs.ActiveTabIndex == 0)
{
Tabs.Tabs[1].Enabled = false;
}
but it hides the tab...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了一些对我有帮助的东西。
...防止根据表单验证在单击时切换到选项卡
在选项卡选择处理程序中返回 false 会阻止单击的选项卡被选中。
$('#example').tabs({
选择:函数(事件,用户界面){
var isValid = ... // 表单验证返回 true 或 false
返回有效;
}
});
I found something that helped me.
...prevent switching to the tab on click depending on form validation
Returning false in the tabs select handler prevents the clicked tab from becoming selected.
$('#example').tabs({
select: function(event, ui) {
var isValid = ... // form validation returning true or false
return isValid;
}
});