我是 ExtJS 的新手,很难在 600 像素宽的 Ext.grid.EditorGridPanel 中容纳大量列(参见下面的示例)。将所有网格列一起滚动或类似于本示例中显示的第二个网格(Ext 4)可以做到这一点。
var grid = new Ext.grid.EditorGridPanel(
this.getGridConfig('', ['a', 'b', 'c', '...', 'x', 'y', 'z'], [
{
dataIndex: 'a',
header: 'A',
editor: new Ext.form.TextField({width: 200, allowEmpty: false})
},
{
dataIndex: 'b',
header: 'B',
editor: bCombo,
} /* many more column definitions here... */],
definitions,
'disabled'
)
);
我尝试设置autoScroll = true
几个不同的级别,但没有任何运气。在 ExtJS 3.3 中是否有一种机制来处理大量的网格列,类似于为处理选项卡提供的机制?