谁能展示我如何将标题栏中的标题对齐设置为左对齐。我目前正在尝试这个,但它不起作用:
var p = Ext.create('Ext.Panel', {
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'my title',
style: {
'text-align':'left'
}
}
]
});
Ext.Viewport.add(p);
第二次尝试: 现在不能让标题左边和工具栏按钮右边!
var p = Ext.create('Ext.Panel', {
items: [
{
xtype: 'toolbar',
docked: 'top',
layout: {
pack: 'end'
},
title: {
title: 'mytitle',
style: {
'text-align':'left'
}
},
items: [
{
xtype: 'button',
text: 'mybutton',
align: 'right'
}
]
}
]
});
Ext.Viewport.add(p);