我有一个组件,我想向右对齐,但想把它带回来一点点......
me.dockedItems = [ {
xtype: 'toolbar',
dock: 'top',
items:
[{
text: i18n.user_new,
disabled: false,
action: 'add',
iconCls: 'icon-user-add'
},
'->', // is there a way to say align right minus 20px?
{
fieldLabel: i18n.filter,
labelWidth: 40,
xtype: 'filterfield'
}],
...
我将“->”更改为什么?