Ext.grid.GridPanel - tbar。如何换行?我需要做两个tbar行。在一个标题上,在另一个标题下面-按钮。
发布于 2011-10-07 16:11:38
使用与此类似的配置,
dockedItems:[
{
xtype:'toolbar',
items:[{text:'row one button'}]
},
{
xtype:'toolbar',
items:[{text:'row two button'}]
}
]https://stackoverflow.com/questions/7684555
复制相似问题