在Extjs 3中,在网格底栏中添加多个组件(工具栏和分页栏)?

时间:2012-10-04 08:43:46

标签: extjs

我想在gird bbar(底栏)添加工具栏和分页。 但如果我在bbar数组中添加两者,它就会出现单行。我需要的是第一行中的分页和第二行中的工具栏..之前有人处理过这类问题吗?

1 个答案:

答案 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中。