X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6e39d509471fe9b4e2660e0d1631b350d0c66f40..2e847cf21b8ab9d15fa167b315ca5b2fa92638fc:/docs/source/Editor.html diff --git a/docs/source/Editor.html b/docs/source/Editor.html index 5550cd01..80057669 100644 --- a/docs/source/Editor.html +++ b/docs/source/Editor.html @@ -204,7 +204,7 @@ Ext.extend(Ext.Editor, Ext.Component, { this.cancelEdit(); } if(field.triggerBlur){ - field.triggerBlur(); + field.triggerBlur(); } } this.fireEvent('specialkey', field, e); @@ -338,7 +338,7 @@ Ext.extend(Ext.Editor, Ext.Component, { this.fireEvent("canceledit", this, v, this.startValue); } }, - + // private hideEdit: function(remainVisible){ if(remainVisible !== true){ @@ -349,7 +349,8 @@ Ext.extend(Ext.Editor, Ext.Component, { // private onBlur : function(){ - if(this.allowBlur !== true && this.editing){ + // selectSameEditor flag allows the same editor to be started without onBlur firing on itself + if(this.allowBlur !== true && this.editing && this.selectSameEditor !== true){ this.completeEdit(); } }, @@ -388,7 +389,7 @@ Ext.extend(Ext.Editor, Ext.Component, { beforeDestroy : function(){ Ext.destroyMembers(this, 'field'); - + delete this.parentEl; delete this.boundEl; }