在 Telerik MVC TabStrip 控件中使用客户端 API 添加新选项卡

发布于 2024-12-02 01:29:55 字数 121 浏览 0 评论 0原文

有谁知道如何使用客户端 API 在 Telerik 的 MVC TabStrip 中添加选项卡?文档中没有任何内容,tabstrip javascript 中也没有代码。我希望有人以前做过这件事。

提前致谢 !!

Does anyone know how to add a tab in Telerik's MVC TabStrip using Client Side API ? There is nothing in documentation and no code in tabstrip javascript too. I am hoping some one might have done this before.

Thanks in advance !!

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

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

发布评论

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

评论(1

日记撕了你也走了 2024-12-09 01:29:55

经过大量谷歌搜索后,我得到了这篇文章。它解决了我使用客户端 API 添加新选项卡的问题。您必须下载 telerik.extensions.js 并将其注册到 _layout.cshtml 中,然后只需在 tabstrip 实例上调用 addTab 即可,如下所示:

$("#customerTabs").data("tTabStrip").addTab({ text: 'customer #' + custId, html: "<div>some customer</div>"});

After googling a lot , i got this post. It solved my problem of adding new tab using client API. you will have to download telerik.extensions.js and register it in _layout.cshtml and then just call addTab on your tabstrip instance like this:

$("#customerTabs").data("tTabStrip").addTab({ text: 'customer #' + custId, html: "<div>some customer</div>"});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文