禁止点击 TabContainer 中的 tabPanel

发布于 2024-11-27 04:54:41 字数 251 浏览 2 评论 0原文

我想禁用单击并从一个选项卡面板转到另一个选项卡面板。就像这里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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稀香 2024-12-04 04:54:41

我发现了一些对我有帮助的东西。

...防止根据表单验证在单击时切换到选项卡

在选项卡选择处理程序中返回 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;
}
});

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文