如何左对齐My Toolbar文字选项(不是CSS覆盖)?
var myToolbar = new Ext.Toolbar({
dock : 'top',
title: 'My Toolbar',
???
});
感谢。
答案 0 :(得分:2)
您可以更改工具栏的布局
layout: {
pack: 'justify',
align: 'left' // align center is the default
}
这也会改变按钮的布局(如果有的话)。您可以控制此行为,在标题和按钮之间添加空格。有关详细信息,请参阅此文章http://www.sencha.com/forum/showthread.php?102989-docked-toolbar-and-button-positioning.-align-attribute-is-ignored。