uwolfer
2 Feb 2010, 12:24 AM
The documentation tells that Ext.Toolbar#enableOverflow is false by default. This is not true; it's not initialized at all. This has the result that the check "this.container.enableOverflow === false" returns false and performance expensive dom operations are executed (Firebug profiler tells about 10% in my case).
The following override fixes this issue:
Ext.override(Ext.Toolbar, {
enableOverflow: false
});
The following override fixes this issue:
Ext.override(Ext.Toolbar, {
enableOverflow: false
});