如何将搜索框设置为中心?

时间:2014-01-30 10:39:42

标签: extjs extjs4

如何将搜索框/文本字段设置为工具栏的中心?

以下是我正在使用的代码......

Ext.create('Ext.toolbar.Toolbar', {
    renderTo: document.body,
    width   : 500,
    items: [
        {
            text: 'Button1'
        },
        '->',
        {
            xtype    : 'textfield',
            name     : 'field1',
            emptyText: 'Enter search term'
        },
        '-',
        {
            text: 'Button2'
        }
    ]
});

注意:我使用的是Extjs 4.2.1

1 个答案:

答案 0 :(得分:2)

只需在文本字段定义后添加'->'{ xtype: 'tbfill' }

items: [
    {
        text: 'Button1'
    },
    '->',
    {
        xtype    : 'textfield',
        name     : 'field1',
        emptyText: 'Enter search term'
    },
    '->',
    '-',
    {
        text: 'Button2'
    }
]