私のウィンドウには、gridPanel と formPanel の 2 つのオブジェクトがあります。formPanel は常に表示され、gridPanel (その上にある) は時々しか表示されません。
私が抱えている問題は、autoScroll がまったく機能していないことです。
#Window Config#
UserSelection = Ext.extend(Ext.Window, {
id: 'comWin',
title: 'User Selection',
width: 700,
height: 300,
autoScroll: true,
maximizable: true,
autoDestroy: false,
closeAction: 'hide'
#Items added to config at creation#
this.add(comGrid);
this.add(comForm);
#When Grid is shown#
comGrid.show();
comWin.doLayout();