如何在不使用 Addable 插件的情况下在 YUI3 Tabview 小部件中添加新选项卡
目前我正在使用 Tabview 可添加插件,由用户单击选项卡视图小部件的添加按钮启动。
现在我还想动态添加一些事件的选项卡。
我尝试使用 Tabview 的添加方法(http://developer.yahoo.com/yui/3/api/WidgetParent.html#method_add)
function myJsFunc(name, content){
tabview3.add({
label: name,
content: '<textarea> </textarea>',
index: Number(tabview3.size())});
}
这里 tabview3 是 Tabview 小部件的全局对象。这似乎不起作用。我有什么遗漏的吗?任何帮助表示赞赏。
Currently I am using Tabview addable plugin, which is initiated by user on clicking add button of tabview widget.
Now I also want to add a tab on some event dynamically.
I tried following using add method (http://developer.yahoo.com/yui/3/api/WidgetParent.html#method_add) of Tabview
function myJsFunc(name, content){
tabview3.add({
label: name,
content: '<textarea> </textarea>',
index: Number(tabview3.size())});
}
Here tabview3 is a global object of Tabview widget. This does not seem to work. Is there any thing which I am missing ? Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下将允许您创建两个按钮来添加和删除选项卡。
Following will allow you to create two buttons to add and remove tabs.
我在 YUI3 中也遇到了同样的问题。永远无法弄清楚。如果我可以重新启动该项目,我会选择 YUI2。 YUI2 上有更多文档,更不用说 tabview 仍处于 v3 测试阶段。
话虽这么说,我使用以下代码解决了这个问题:
I ran into the same problem with YUI3. Never could figure it out. If I could restart the project I would go with YUI2. There is much more documentation on YUI2 not to mention tabview is still in beta for v3.
That being said, I worked around it using the following code: