ext toolbar 里的button默认都是靠左对齐的,请问能设置靠右或者居中对齐吗?
在ExtJS 3.0 中,可以直接这样实现:
toolbar.add(
{
text:'Foo'
},
'->',
{
text:'Bar'
}
);
{
text:'Foo'
},
'->',
{
text:'Bar'
}
);
关键就在那个‘->',这是一个fill element.
参考文章:http://www.extjs.com/forum/showthread.php?t=3485&p=34358