+// We perform all necessary sizing here. We do NOT call the current class's onResize because we need this control\r
+// we skip that and go up the hierarchy to Ext.form.Field\r
+ onResize: function(w, h) {\r
+ Ext.form.Field.prototype.onResize.apply(this, arguments);\r
+ w -= this.resizeEl.getPadding('l');\r
+ if (this.getTriggerWidth) {\r
+ this.wrap.setWidth(w);\r
+ this.el.setWidth(w - this.getTriggerWidth());\r
+ } else {\r
+ this.el.setWidth(w);\r
+ }\r