Ext.Panel.override({
	setAutoScroll: function() {
		if (this.rendered && this.autoScroll) {
			var el = this.body || this.el;
			if (el) {
				el.setOverflow('auto');
				// Following line required to fix autoScroll
				el.dom.style.position = 'relative';
			}
		}
	}
});