使用ColumnSets时是否可以在所有列中自动拥有相同的高度(不手动指定高度)?
new table({
store: store,
columnSets: [
[
[colA]
],
[
[colB]
]
]
}, "grid1");
如果所有列都在同一ColumnSet中,则没有问题。
new table({
store: store,
columnSets: [
[
[colA, colB]
]
]
}, "grid2");
请看一下这个小提琴: http://jsfiddle.net/dawp21Ly/