ExtJs Fenster AutoScroll funktioniert nicht

Meinem Fenster hat 2 Objekte: ein gridPanel und ein formPanel. Das formPanel ist immer auf dem display und die gridPanel (die sitzt oben) ist nur angezeigt bei Gelegenheit.

Das Problem das ich habe ist, dass autoScroll funktioniert nicht.

#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();
InformationsquelleAutor pm13 | 2012-05-10
Schreibe einen Kommentar