我想在gird bbar(底栏)添加工具栏和分页。 但如果我在bbar数组中添加两者,它就会出现单行。我需要的是第一行中的分页和第二行中的工具栏..之前有人处理过这类问题吗?
答案 0 :(得分:0)
您可以尝试这种方法:
this.toolBar = new Ext.Container({
height: 54,
layout: 'anchor',
xtype: 'container',
defaults: {
anchor: '100%',
height: 27
},
items: [
this.toolBar1,
this.toolBar2
]
});
并将此容器放在网格tbar或bbar中。