这是我正在处理的应用程序的简单代码:
{
xtype: 'tabpanel',
activeTab: 0,
layout: 'fit',
items: [
{
xtype: 'gridpanel',
title: 'Proposed Benchmarkss',
store: 'BenchmarkLookupStore',
plugins: [cellEditing],
scroll: true,
columns: [
new Ext.grid.RowNumberer(),
{
dataIndex: 'code',
text: 'Code',
flex: 1
}
]
},
{
xtype: 'panel',
title: 'Additional Comments',
layout: 'fit',
items: [
{
xtype: 'htmleditor'
}
]
}
]
}
我正在使用 Extjs4.1.1 GA,记录数为 300,但在网格面板上看不到滚动条。我放了 scroll: true ,但我仍然看不到滚动条。我获得滚动条的唯一方法是将 height:200 放在网格面板上。
很奇怪 !
建议?