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.3.1 - Released 11/30/2010
[extjs.git]
/
pkgs
/
pkg-buttons-debug.js
diff --git
a/pkgs/pkg-buttons-debug.js
b/pkgs/pkg-buttons-debug.js
index
d376d04
..
e734062
100644
(file)
--- a/
pkgs/pkg-buttons-debug.js
+++ b/
pkgs/pkg-buttons-debug.js
@@
-1,8
+1,8
@@
/*!
/*!
- * Ext JS Library 3.
2
.1
- * Copyright(c) 2006-2010
Ext JS,
Inc.
- * licensing@
extjs
.com
- * http://www.
extjs
.com/license
+ * Ext JS Library 3.
3
.1
+ * Copyright(c) 2006-2010
Sencha
Inc.
+ * licensing@
sencha
.com
+ * http://www.
sencha
.com/license
*/
/**
* @class Ext.Button
*/
/**
* @class Ext.Button
@@
-194,6
+194,11
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
*/
initComponent : function(){
*/
initComponent : function(){
+ if(this.menu){
+ this.menu = Ext.menu.MenuMgr.get(this.menu);
+ this.menu.ownerCt = this;
+ }
+
Ext.Button.superclass.initComponent.call(this);
this.addEvents(
Ext.Button.superclass.initComponent.call(this);
this.addEvents(
@@
-256,8
+261,9
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
*/
'menutriggerout'
);
*/
'menutriggerout'
);
- if(this.menu){
- this.menu = Ext.menu.MenuMgr.get(this.menu);
+
+ if (this.menu){
+ this.menu.ownerCt = undefined;
}
if(Ext.isString(this.toggleGroup)){
this.enableToggle = true;
}
if(Ext.isString(this.toggleGroup)){
this.enableToggle = true;
@@
-374,9
+380,10
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
if(this.repeat){
var repeater = new Ext.util.ClickRepeater(btn, Ext.isObject(this.repeat) ? this.repeat : {});
if(this.repeat){
var repeater = new Ext.util.ClickRepeater(btn, Ext.isObject(this.repeat) ? this.repeat : {});
- this.mon(repeater, 'click', this.onClick, this);
+ this.mon(repeater, 'click', this.onRepeatClick, this);
+ }else{
+ this.mon(btn, this.clickEvent, this.onClick, this);
}
}
- this.mon(btn, this.clickEvent, this.onClick, this);
},
// private
},
// private
@@
-444,7
+451,7
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
this.clearTip();
}
if(this.menu && this.destroyMenu !== false) {
this.clearTip();
}
if(this.menu && this.destroyMenu !== false) {
- Ext.destroy(this.menu);
+ Ext.destroy(this.
btnEl, this.
menu);
}
Ext.destroy(this.repeater);
},
}
Ext.destroy(this.repeater);
},
@@
-608,6
+615,11
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
hasVisibleMenu : function(){
return this.menu && this.menu.ownerCt == this && this.menu.isVisible();
},
hasVisibleMenu : function(){
return this.menu && this.menu.ownerCt == this && this.menu.isVisible();
},
+
+ // private
+ onRepeatClick : function(repeat, e){
+ this.onClick(e);
+ },
// private
onClick : function(e){
// private
onClick : function(e){
@@
-618,9
+630,7
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
return;
}
if(!this.disabled){
return;
}
if(!this.disabled){
- if(this.enableToggle && (this.allowDepress !== false || !this.pressed)){
- this.toggle();
- }
+ this.doToggle();
if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
this.showMenu();
}
if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
this.showMenu();
}
@@
-631,6
+641,13
@@
Ext.Button = Ext.extend(Ext.BoxComponent, {
}
}
},
}
}
},
+
+ // private
+ doToggle: function(){
+ if (this.enableToggle && (this.allowDepress !== false || !this.pressed)) {
+ this.toggle();
+ }
+ },
// private
isMenuTriggerOver : function(e, internal){
// private
isMenuTriggerOver : function(e, internal){
@@
-920,9
+937,7
@@
Ext.SplitButton = Ext.extend(Ext.Button, {
this.arrowHandler.call(this.scope || this, this, e);
}
}else{
this.arrowHandler.call(this.scope || this, this, e);
}
}else{
- if(this.enableToggle){
- this.toggle();
- }
+ this.doToggle();
this.fireEvent("click", this, e);
if(this.handler){
this.handler.call(this.scope || this, this, e);
this.fireEvent("click", this, e);
if(this.handler){
this.handler.call(this.scope || this, this, e);