如何将工具栏直接放在选项卡面板下方
这是我当前的代码(省略了高度/宽度):
myapp.cards.addvehicle = new Ext.TabPanel({
scroll: 'vertical',
id: "home2",
layout:{
type:"vbox",
},
dockedItems: [{
xtype: 'toolbar',
dock: 'top'
}]
});
但它将工具栏放置在选项卡面板上方。在配置对象的项目部分添加工具栏也不会产生所需的结果。有没有人能够做到这一点,如果可以的话,如何实现?
注意:我相信默认情况下,在 extjs4 中,工具栏在停靠在顶部时会出现在选项卡栏下方,尽管我无法确认这一点。
非常感谢。
Here is my current code (with heights/widths omitted):
myapp.cards.addvehicle = new Ext.TabPanel({
scroll: 'vertical',
id: "home2",
layout:{
type:"vbox",
},
dockedItems: [{
xtype: 'toolbar',
dock: 'top'
}]
});
but it places the toolbar above the tabpanel. Adding a toolbar in the items part of the configuration object doesn't produce the desired result either. Has anyone been able to accomplish this and if so, how?
Note: I believe that by default in extjs4 the toolbar appear below the tabbar when docked at the top, although I can't confirm this.
Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
停靠的工具栏项上的底部:
the bottom on the docked toolbar item: