3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <title>The source code</title>
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8 <body onload="prettyPrint();">
9 <pre class="prettyprint lang-js">/*!
10 * Ext JS Library 3.2.2
11 * Copyright(c) 2006-2010 Ext JS, Inc.
13 * http://www.extjs.com/license
15 <div id="cls-Ext.Button"></div>/**
17 * @extends Ext.BoxComponent
19 * @cfg {String} text The button text to be used as innerHTML (html tags are accepted)
20 * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
21 * CSS property of the button by default, so if you want a mixed icon/text button, set cls:'x-btn-text-icon')
22 * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event).
23 * The handler is passed the following parameters:<div class="mdetail-params"><ul>
24 * <li><code>b</code> : Button<div class="sub-desc">This Button.</div></li>
25 * <li><code>e</code> : EventObject<div class="sub-desc">The click event.</div></li>
27 * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width).
28 * See also {@link Ext.Panel}.<tt>{@link Ext.Panel#minButtonWidth minButtonWidth}</tt>.
29 * @cfg {String/Object} tooltip The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or QuickTips config object
30 * @cfg {Boolean} hidden True to start hidden (defaults to false)
31 * @cfg {Boolean} disabled True to start disabled (defaults to false)
32 * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
33 * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed)
34 * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
35 * a {@link Ext.util.ClickRepeater ClickRepeater} config object (defaults to false).
38 * @param {Object} config The config object
41 Ext.Button = Ext.extend(Ext.BoxComponent, {
43 * Read-only. True if this button is hidden
48 * Read-only. True if this button is disabled
53 * Read-only. True if this button is pressed (only if enableToggle = true)
59 * @cfg {Number} tabIndex Set a DOM tabIndex for this button (defaults to undefined)
63 * @cfg {Boolean} allowDepress
64 * False to not allow a pressed Button to be depressed (defaults to undefined). Only valid when {@link #enableToggle} is true.
68 * @cfg {Boolean} enableToggle
69 * True to enable pressed/not pressed toggling (defaults to false)
73 * @cfg {Function} toggleHandler
74 * Function called when a Button with {@link #enableToggle} set to true is clicked. Two arguments are passed:<ul class="mdetail-params">
75 * <li><b>button</b> : Ext.Button<div class="sub-desc">this Button object</div></li>
76 * <li><b>state</b> : Boolean<div class="sub-desc">The next state of the Button, true means pressed.</div></li>
81 * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
84 * @cfg {String} menuAlign
85 * The position to align the menu to (see {@link Ext.Element#alignTo} for more details, defaults to 'tl-bl?').
90 * @cfg {String} overflowText If used in a {@link Ext.Toolbar Toolbar}, the
91 * text to be used if this item is shown in the overflow menu. See also
92 * {@link Ext.Toolbar.Item}.<code>{@link Ext.Toolbar.Item#overflowText overflowText}</code>.
95 * @cfg {String} iconCls
96 * A css class which sets a background image to be used as the icon for this button
100 * submit, reset or button - defaults to 'button'
105 menuClassTarget : 'tr:nth(2)',
108 * @cfg {String} clickEvent
109 * The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu).
110 * Defaults to <tt>'click'</tt>.
112 clickEvent : 'click',
115 * @cfg {Boolean} handleMouseEvents
116 * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
118 handleMouseEvents : true,
121 * @cfg {String} tooltipType
122 * The type of tooltip to use. Either 'qtip' (default) for QuickTips or 'title' for title attribute.
124 tooltipType : 'qtip',
127 * @cfg {String} buttonSelector
128 * <p>(Optional) A {@link Ext.DomQuery DomQuery} selector which is used to extract the active, clickable element from the
129 * DOM structure created.</p>
130 * <p>When a custom {@link #template} is used, you must ensure that this selector results in the selection of
131 * a focussable element.</p>
132 * <p>Defaults to <b><tt>'button:first-child'</tt></b>.</p>
134 buttonSelector : 'button:first-child',
137 * @cfg {String} scale
138 * <p>(Optional) The size of the Button. Three values are allowed:</p>
139 * <ul class="mdetail-params">
140 * <li>'small'<div class="sub-desc">Results in the button element being 16px high.</div></li>
141 * <li>'medium'<div class="sub-desc">Results in the button element being 24px high.</div></li>
142 * <li>'large'<div class="sub-desc">Results in the button element being 32px high.</div></li>
144 * <p>Defaults to <b><tt>'small'</tt></b>.</p>
149 * @cfg {Object} scope The scope (<tt><b>this</b></tt> reference) in which the
150 * <code>{@link #handler}</code> and <code>{@link #toggleHandler}</code> is
151 * executed. Defaults to this Button.
155 * @cfg {String} iconAlign
156 * <p>(Optional) The side of the Button box to render the icon. Four values are allowed:</p>
157 * <ul class="mdetail-params">
158 * <li>'top'<div class="sub-desc"></div></li>
159 * <li>'right'<div class="sub-desc"></div></li>
160 * <li>'bottom'<div class="sub-desc"></div></li>
161 * <li>'left'<div class="sub-desc"></div></li>
163 * <p>Defaults to <b><tt>'left'</tt></b>.</p>
168 * @cfg {String} arrowAlign
169 * <p>(Optional) The side of the Button box to render the arrow if the button has an associated {@link #menu}.
170 * Two values are allowed:</p>
171 * <ul class="mdetail-params">
172 * <li>'right'<div class="sub-desc"></div></li>
173 * <li>'bottom'<div class="sub-desc"></div></li>
175 * <p>Defaults to <b><tt>'right'</tt></b>.</p>
177 arrowAlign : 'right',
180 * @cfg {Ext.Template} template (Optional)
181 * <p>A {@link Ext.Template Template} used to create the Button's DOM structure.</p>
182 * Instances, or subclasses which need a different DOM structure may provide a different
183 * template layout in conjunction with an implementation of {@link #getTemplateArgs}.
189 * A CSS class string to apply to the button's main element.
194 * The {@link Ext.menu.Menu Menu} object associated with this Button when configured with the {@link #menu} config option.
197 * @cfg {Boolean} autoWidth
198 * By default, if a width is not specified the button will attempt to stretch horizontally to fit its content.
199 * If the button is being managed by a width sizing layout (hbox, fit, anchor), set this to false to prevent
200 * the button from doing this automatic sizing.
201 * Defaults to <tt>undefined</tt>.
204 initComponent : function(){
205 Ext.Button.superclass.initComponent.call(this);
210 * Fires when this button is clicked
211 * @param {Button} this
212 * @param {EventObject} e The click event
217 * Fires when the 'pressed' state of this button changes (only if enableToggle = true)
218 * @param {Button} this
219 * @param {Boolean} pressed
224 * Fires when the mouse hovers over the button
225 * @param {Button} this
226 * @param {Event} e The event object
231 * Fires when the mouse exits the button
232 * @param {Button} this
233 * @param {Event} e The event object
238 * If this button has a menu, this event fires when it is shown
239 * @param {Button} this
245 * If this button has a menu, this event fires when it is hidden
246 * @param {Button} this
251 * @event menutriggerover
252 * If this button has a menu, this event fires when the mouse enters the menu triggering element
253 * @param {Button} this
255 * @param {EventObject} e
259 * @event menutriggerout
260 * If this button has a menu, this event fires when the mouse leaves the menu triggering element
261 * @param {Button} this
263 * @param {EventObject} e
268 this.menu = Ext.menu.MenuMgr.get(this.menu);
270 if(Ext.isString(this.toggleGroup)){
271 this.enableToggle = true;
276 * <p>This method returns an Array which provides substitution parameters for the {@link #template Template} used
277 * to create this Button's DOM structure.</p>
278 * <p>Instances or subclasses which use a different Template to create a different DOM structure may need to provide their
279 * own implementation of this method.</p>
280 * <p>The default implementation which provides data for the default {@link #template} returns an Array containing the
281 * following items:</p><div class="mdetail-params"><ul>
282 * <li>The <button>'s {@link #type}</li>
283 * <li>A CSS class name applied to the Button's main <tbody> element which determines the button's scale and icon alignment.</li>
284 * <li>A CSS class to determine the presence and position of an arrow icon. (<code>'x-btn-arrow'</code> or <code>'x-btn-arrow-bottom'</code> or <code>''</code>)</li>
285 * <li>The {@link #cls} CSS class name applied to the button's wrapping <table> element.</li>
286 * <li>The Component id which is applied to the button's wrapping <table> element.</li>
288 * @return {Array} Substitution data for a Template.
290 getTemplateArgs : function(){
291 return [this.type, 'x-btn-' + this.scale + ' x-btn-icon-' + this.scale + '-' + this.iconAlign, this.getMenuClass(), this.cls, this.id];
295 setButtonClass : function(){
296 if(this.useSetClass){
297 if(!Ext.isEmpty(this.oldCls)){
298 this.el.removeClass([this.oldCls, 'x-btn-pressed']);
300 this.oldCls = (this.iconCls || this.icon) ? (this.text ? 'x-btn-text-icon' : 'x-btn-icon') : 'x-btn-noicon';
301 this.el.addClass([this.oldCls, this.pressed ? 'x-btn-pressed' : null]);
306 getMenuClass : function(){
307 return this.menu ? (this.arrowAlign != 'bottom' ? 'x-btn-arrow' : 'x-btn-arrow-bottom') : '';
311 onRender : function(ct, position){
313 if(!Ext.Button.buttonTemplate){
314 // hideous table template
315 Ext.Button.buttonTemplate = new Ext.Template(
316 '<table id="{4}" cellspacing="0" class="x-btn {3}"><tbody class="{1}">',
317 '<tr><td class="x-btn-tl"><i> </i></td><td class="x-btn-tc"></td><td class="x-btn-tr"><i> </i></td></tr>',
318 '<tr><td class="x-btn-ml"><i> </i></td><td class="x-btn-mc"><em class="{2}" unselectable="on"><button type="{0}"></button></em></td><td class="x-btn-mr"><i> </i></td></tr>',
319 '<tr><td class="x-btn-bl"><i> </i></td><td class="x-btn-bc"></td><td class="x-btn-br"><i> </i></td></tr>',
321 Ext.Button.buttonTemplate.compile();
323 this.template = Ext.Button.buttonTemplate;
326 var btn, targs = this.getTemplateArgs();
329 btn = this.template.insertBefore(position, targs, true);
331 btn = this.template.append(ct, targs, true);
334 * An {@link Ext.Element Element} encapsulating the Button's clickable element. By default,
335 * this references a <tt><button></tt> element. Read only.
339 this.btnEl = btn.child(this.buttonSelector);
340 this.mon(this.btnEl, {
346 this.initButtonEl(btn, this.btnEl);
348 Ext.ButtonToggleMgr.register(this);
352 initButtonEl : function(btn, btnEl){
354 this.setIcon(this.icon);
355 this.setText(this.text);
356 this.setIconClass(this.iconCls);
357 if(Ext.isDefined(this.tabIndex)){
358 btnEl.dom.tabIndex = this.tabIndex;
361 this.setTooltip(this.tooltip, true);
364 if(this.handleMouseEvents){
367 mouseover: this.onMouseOver,
368 mousedown: this.onMouseDown
371 // new functionality for monitoring on the document level
372 //this.mon(btn, 'mouseout', this.onMouseOut, this);
376 this.mon(this.menu, {
378 show: this.onMenuShow,
379 hide: this.onMenuHide
384 var repeater = new Ext.util.ClickRepeater(btn, Ext.isObject(this.repeat) ? this.repeat : {});
385 this.mon(repeater, 'click', this.onRepeatClick, this);
387 this.mon(btn, this.clickEvent, this.onClick, this);
392 afterRender : function(){
393 Ext.Button.superclass.afterRender.call(this);
394 this.useSetClass = true;
395 this.setButtonClass();
396 this.doc = Ext.getDoc();
401 * Sets the CSS class that provides a background image to use as the button's icon. This method also changes
402 * the value of the {@link iconCls} config internally.
403 * @param {String} cls The CSS class providing the icon image
404 * @return {Ext.Button} this
406 setIconClass : function(cls){
409 this.btnEl.dom.className = '';
410 this.btnEl.addClass(['x-btn-text', cls || '']);
411 this.setButtonClass();
417 * Sets the tooltip for this Button.
418 * @param {String/Object} tooltip. This may be:<div class="mdesc-details"><ul>
419 * <li><b>String</b> : A string to be used as innerHTML (html tags are accepted) to show in a tooltip</li>
420 * <li><b>Object</b> : A configuration object for {@link Ext.QuickTips#register}.</li>
422 * @return {Ext.Button} this
424 setTooltip : function(tooltip, /* private */ initial){
429 if(Ext.isObject(tooltip)){
430 Ext.QuickTips.register(Ext.apply({
431 target: this.btnEl.id
433 this.tooltip = tooltip;
435 this.btnEl.dom[this.tooltipType] = tooltip;
438 this.tooltip = tooltip;
444 clearTip : function(){
445 if(Ext.isObject(this.tooltip)){
446 Ext.QuickTips.unregister(this.btnEl);
451 beforeDestroy : function(){
455 if(this.menu && this.destroyMenu !== false) {
456 Ext.destroy(this.btnEl, this.menu);
458 Ext.destroy(this.repeater);
462 onDestroy : function(){
464 this.doc.un('mouseover', this.monitorMouseOver, this);
465 this.doc.un('mouseup', this.onMouseUp, this);
468 Ext.ButtonToggleMgr.unregister(this);
470 Ext.Button.superclass.onDestroy.call(this);
474 doAutoWidth : function(){
475 if(this.autoWidth !== false && this.el && this.text && this.width === undefined){
476 this.el.setWidth('auto');
477 if(Ext.isIE7 && Ext.isStrict){
479 if(ib && ib.getWidth() > 20){
481 ib.setWidth(Ext.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
485 if(this.el.getWidth() < this.minWidth){
486 this.el.setWidth(this.minWidth);
493 * Assigns this Button's click handler
494 * @param {Function} handler The function to call when the button is clicked
495 * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the handler function is executed.
496 * Defaults to this Button.
497 * @return {Ext.Button} this
499 setHandler : function(handler, scope){
500 this.handler = handler;
506 * Sets this Button's text
507 * @param {String} text The button text
508 * @return {Ext.Button} this
510 setText : function(text){
513 this.btnEl.update(text || ' ');
514 this.setButtonClass();
521 * Sets the background image (inline style) of the button. This method also changes
522 * the value of the {@link icon} config internally.
523 * @param {String} icon The path to an image to display in the button
524 * @return {Ext.Button} this
526 setIcon : function(icon){
529 this.btnEl.setStyle('background-image', icon ? 'url(' + icon + ')' : '');
530 this.setButtonClass();
536 * Gets the text for this Button
537 * @return {String} The button text
539 getText : function(){
544 * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
545 * @param {Boolean} state (optional) Force a particular state
546 * @param {Boolean} supressEvent (optional) True to stop events being fired when calling this method.
547 * @return {Ext.Button} this
549 toggle : function(state, suppressEvent){
550 state = state === undefined ? !this.pressed : !!state;
551 if(state != this.pressed){
553 this.el[state ? 'addClass' : 'removeClass']('x-btn-pressed');
555 this.pressed = state;
557 this.fireEvent('toggle', this, state);
558 if(this.toggleHandler){
559 this.toggleHandler.call(this.scope || this, this, state);
567 onDisable : function(){
568 this.onDisableChange(true);
572 onEnable : function(){
573 this.onDisableChange(false);
576 onDisableChange : function(disabled){
578 if(!Ext.isIE6 || !this.text){
579 this.el[disabled ? 'addClass' : 'removeClass'](this.disabledClass);
581 this.el.dom.disabled = disabled;
583 this.disabled = disabled;
587 * Show this button's menu (if it has one)
589 showMenu : function(){
590 if(this.rendered && this.menu){
592 Ext.QuickTips.getQuickTip().cancelShow(this.btnEl);
594 if(this.menu.isVisible()){
597 this.menu.ownerCt = this;
598 this.menu.show(this.el, this.menuAlign);
604 * Hide this button's menu (if it has one)
606 hideMenu : function(){
607 if(this.hasVisibleMenu()){
614 * Returns true if the button has a menu and it is visible
617 hasVisibleMenu : function(){
618 return this.menu && this.menu.ownerCt == this && this.menu.isVisible();
622 onRepeatClick : function(repeat, e){
627 onClick : function(e){
635 if(this.enableToggle && (this.allowDepress !== false || !this.pressed)){
638 if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
641 this.fireEvent('click', this, e);
643 //this.el.removeClass('x-btn-over');
644 this.handler.call(this.scope || this, this, e);
650 isMenuTriggerOver : function(e, internal){
651 return this.menu && !internal;
655 isMenuTriggerOut : function(e, internal){
656 return this.menu && !internal;
660 onMouseOver : function(e){
662 var internal = e.within(this.el, true);
664 this.el.addClass('x-btn-over');
665 if(!this.monitoringMouseOver){
666 this.doc.on('mouseover', this.monitorMouseOver, this);
667 this.monitoringMouseOver = true;
669 this.fireEvent('mouseover', this, e);
671 if(this.isMenuTriggerOver(e, internal)){
672 this.fireEvent('menutriggerover', this, this.menu, e);
678 monitorMouseOver : function(e){
679 if(e.target != this.el.dom && !e.within(this.el)){
680 if(this.monitoringMouseOver){
681 this.doc.un('mouseover', this.monitorMouseOver, this);
682 this.monitoringMouseOver = false;
689 onMouseOut : function(e){
690 var internal = e.within(this.el) && e.target != this.el.dom;
691 this.el.removeClass('x-btn-over');
692 this.fireEvent('mouseout', this, e);
693 if(this.isMenuTriggerOut(e, internal)){
694 this.fireEvent('menutriggerout', this, this.menu, e);
707 onFocus : function(e){
709 this.el.addClass('x-btn-focus');
713 onBlur : function(e){
714 this.el.removeClass('x-btn-focus');
718 getClickEl : function(e, isUp){
723 onMouseDown : function(e){
724 if(!this.disabled && e.button === 0){
725 this.getClickEl(e).addClass('x-btn-click');
726 this.doc.on('mouseup', this.onMouseUp, this);
730 onMouseUp : function(e){
732 this.getClickEl(e, true).removeClass('x-btn-click');
733 this.doc.un('mouseup', this.onMouseUp, this);
737 onMenuShow : function(e){
738 if(this.menu.ownerCt == this){
739 this.menu.ownerCt = this;
740 this.ignoreNextClick = 0;
741 this.el.addClass('x-btn-menu-active');
742 this.fireEvent('menushow', this, this.menu);
746 onMenuHide : function(e){
747 if(this.menu.ownerCt == this){
748 this.el.removeClass('x-btn-menu-active');
749 this.ignoreNextClick = this.restoreClick.defer(250, this);
750 this.fireEvent('menuhide', this, this.menu);
751 delete this.menu.ownerCt;
756 restoreClick : function(){
757 this.ignoreNextClick = 0;
761 * @cfg {String} autoEl @hide
764 * @cfg {String/Object} html @hide
767 * @cfg {String} contentEl @hide
770 * @cfg {Mixed} data @hide
773 * @cfg {Mixed} tpl @hide
776 * @cfg {String} tplWriteMode @hide
779 Ext.reg('button', Ext.Button);
781 // Private utility class used by Button
782 Ext.ButtonToggleMgr = function(){
785 function toggleGroup(btn, state){
787 var g = groups[btn.toggleGroup];
788 for(var i = 0, l = g.length; i < l; i++){
797 register : function(btn){
798 if(!btn.toggleGroup){
801 var g = groups[btn.toggleGroup];
803 g = groups[btn.toggleGroup] = [];
806 btn.on('toggle', toggleGroup);
809 unregister : function(btn){
810 if(!btn.toggleGroup){
813 var g = groups[btn.toggleGroup];
816 btn.un('toggle', toggleGroup);
821 * Gets the pressed button in the passed group or null
822 * @param {String} group
825 getPressed : function(group){
826 var g = groups[group];
828 for(var i = 0, len = g.length; i < len; i++){
829 if(g[i].pressed === true){