如何右对齐ExtJS tbar的内容?

时间:2011-02-28 11:54:35

标签: javascript extjs

我在网格面板中有一个tbar,如下所示:

enter image description here

这是产生它的代码:

var grid = new Ext.grid.GridPanel({
    region: 'center',
    style: 'margin: 10px',
    store: new Ext.data.Store({
        data: myData,
        reader: myReader
    }),
    title: 'Testing',
    tbar: ['Filters:', {
            width:          100,
            xtype:          'combo',
            mode:           'local',
            value:          'en',
            triggerAction:  'all',
            forceSelection: true,
            editable:       false,
            fieldLabel:     'Produkt',
            name:           'language',
            hiddenName:     'language',
            displayField:   'name',
            valueField:     'value',
            store:          new Ext.data.JsonStore({
                fields : ['name', 'value'],
                data   : [
                    {name : 'German',   value: 'de'},
                    {name : 'English',  value: 'en'},
                    {name : 'French', value: 'fr'}
                ]
            })

        }],

我需要更改哪些内容才能使投放框右对齐而不是左对齐?

附录

感谢@dogbane,这非常有效,这就是我如何正确对齐文本和下拉列表:

tbar: [
    {xtype: 'tbfill'},
    'Filters:',
    {
        width:          100,
        xtype:          'combo',
        mode:           'local',
        ...

1 个答案:

答案 0 :(得分:23)

尝试:

{xtype: 'tbfill'}, // or '->'

请参阅Ext.Toolbar.Fill的文档。