Ext.create('Ext.Panel', {
layout: 'hbox', // важно
renderTo: Ext.getBody(),
items: [
{ xtype: 'button', text: 'Select' },
{ xtype: 'container', flex:1 }, // <== magic )
{ xtype: 'button', text: 'Advanced options' },
{ xtype: 'button', text: 'Back' }
]
})