私が取り組んでいるアプリケーションの簡単なコードは次のとおりです。
{
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 を配置することです。
非常に奇妙な !
提案?