git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[extjs.git]
/
docs
/
source
/
Editor.html
diff --git
a/docs/source/Editor.html
b/docs/source/Editor.html
index
5550cd0
..
8005766
100644
(file)
--- 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){
this.cancelEdit();
}
if(field.triggerBlur){
- field.triggerBlur();
+ field.triggerBlur();
}
}
this.fireEvent('specialkey', field, e);
}
}
this.fireEvent('specialkey', field, e);
@@
-338,7
+338,7
@@
Ext.extend(Ext.Editor, Ext.Component, {
this.fireEvent("canceledit", this, v, this.startValue);
}
},
this.fireEvent("canceledit", this, v, this.startValue);
}
},
-
+
// private
hideEdit: function(remainVisible){
if(remainVisible !== true){
// private
hideEdit: function(remainVisible){
if(remainVisible !== true){
@@
-349,7
+349,8
@@
Ext.extend(Ext.Editor, Ext.Component, {
// private
onBlur : function(){
// 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();
}
},
this.completeEdit();
}
},
@@
-388,7
+389,7
@@
Ext.extend(Ext.Editor, Ext.Component, {
beforeDestroy : function(){
Ext.destroyMembers(this, 'field');
beforeDestroy : function(){
Ext.destroyMembers(this, 'field');
-
+
delete this.parentEl;
delete this.boundEl;
}
delete this.parentEl;
delete this.boundEl;
}