如何對齊Sencha中的按鈕在左右兩側觸摸工具欄(每邊各有一個按鈕)?在Sencha Touch工具欄中左右對齊按鈕
在ExtJs中,我曾經使用' - >'。但是這在Sencha Touch中似乎不起作用。
任何想法?這裏
編輯
編輯 是我的代碼
Ext.define('reestructura.view.ContratoList', {
extend: 'Ext.List',
xtype: 'contratolist',
requires: 'Ext.field.Toggle',
config: {
onItemDisclosure: true,
emptyText: 'El contrato no existe',
store: 'Contratos',
items: [{
xtype: 'toolbar',
docked: 'top',
style: 'background:darkgray',
items: [{
xtype: 'searchfield',
placeHolder: 'Buscar contrato...'
}, {
xtype: 'button',
iconCls: 'search',
iconMask: true,
ui: 'confirm',
action: 'buscarContratos'
},
{
xtype:'spacer'
},
{
xtype: 'togglefield',
label: 'simulación'
}
]
}],
itemTpl : [
'<p>{idContrato}    {nombreGrupo} </p>',
'<div style="font-size: 0.75em; color: darkgray">Saldo Pendiente: {saldoPendiente}</div>',
].join('')
}
});
我已經做了,但按鈕沒有去工具欄的末尾有一些空間... –
你能提供一些代碼嗎? – Darly
當然,完成 –