Ajax Control Toolkit - 使用客户端按钮激活选项卡

发布于 2024-07-30 00:47:04 字数 242 浏览 13 评论 0原文

我正在使用 Ajax Control Toolkit 的 TabContainer/TabPanel 组件。

我想隐藏选项卡本身,并使用页面上其他位置的按钮来激活(带到前面)其中一个选项卡,而无需发回服务器。

我可以通过获取选项卡的 clientID 并手动设置可见性和显示样式来显示和隐藏选项卡。

但是,当我单击实际选项卡时,是否可以调用一个 JavaScript 函数来执行此操作并执行幕后发生的任何魔术?

I'm using the TabContainer/TabPanel components of the Ajax Control Toolkit.

I'd like to hide the tabs themselves and use a button elsewhere on the page to activate (bring to the front) one of the tabs without posting back to the server.

I can show and hide the tabs by grabbing their clientIDs and manually setting the visibility and display styles.

But is there a javascript function I can call to do this and perform whatever magic happens behind the scenes when I click an actual tab?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

沦落红尘 2024-08-06 00:47:04

例子:

var tab = $find(“tabContainer’s ClientID”);
tab.set_activeTabIndex(1); // active the second tab panel
tab.getFirstTab().set_enabled(false); // disable the first panel

Example:

var tab = $find(“tabContainer’s ClientID”);
tab.set_activeTabIndex(1); // active the second tab panel
tab.getFirstTab().set_enabled(false); // disable the first panel
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文