我在这里发现了 2 个类似的问题,但它们对我没有帮助,我的代码是:
var grid = Ext.create('Ext.grid.Panel', {
autoScroll: true,
// if set this to any numeric value, then everything works just good, but
// i was hoping that `ExtJS` already can detect browser window height, am i wrong ?
height: '100%',
title: 'Products',
store: store,
itemId: 'product_grid',
columns: [.. columns skipped ...],
plugins: [ rowEditing ],
dockedItems: [ ..addRow button here..]
});
var panel = Ext.create('Ext.panel.Panel', {
autoScroll: true,
items: [
{
xtype: 'productGrid'
}
]
});
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: panel
});
我需要的是填充整个浏览器窗口的可滚动网格,但这里的网格不会在高度上扩展,所以如果网格有 0 行,那么它有 0 高度,当我按下“添加行”时,添加的行看起来被滚动条和这个看起来很丑。
此外,当网格包含的行数超出浏览器窗口的容量时,会出现页面滚动条(不是网格的滚动条!),这会滚动整个页面,因此按钮栏会滚动,这也是不可取的和丑陋的。
任何想法我的设置有什么问题。
更新:
最后修复它,中间面板也应该包含layout: 'fit'