3 * Copyright(c) 2006-2010 Sencha Inc.
5 * http://www.sencha.com/license
8 * @class Ext.form.Checkbox
9 * @extends Ext.form.Field
10 * Single checkbox field. Can be used as a direct replacement for traditional checkbox fields.
12 * Creates a new Checkbox
13 * @param {Object} config Configuration options
16 Ext.form.Checkbox = Ext.extend(Ext.form.Field, {
18 * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
20 focusClass : undefined,
22 * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to 'x-form-field')
24 fieldClass : 'x-form-field',
26 * @cfg {Boolean} checked <tt>true</tt> if the checkbox should render initially checked (defaults to <tt>false</tt>)
30 * @cfg {String} boxLabel The text that appears beside the checkbox
34 * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
35 * {tag: 'input', type: 'checkbox', autocomplete: 'off'})
37 defaultAutoCreate : { tag: 'input', type: 'checkbox', autocomplete: 'off'},
39 * @cfg {String} inputValue The value that should go into the generated input element's value attribute
42 * @cfg {Function} handler A function called when the {@link #checked} value changes (can be used instead of
43 * handling the check event). The handler is passed the following parameters:
44 * <div class="mdetail-params"><ul>
45 * <li><b>checkbox</b> : Ext.form.Checkbox<div class="sub-desc">The Checkbox being toggled.</div></li>
46 * <li><b>checked</b> : Boolean<div class="sub-desc">The new checked state of the checkbox.</div></li>
50 * @cfg {Object} scope An object to use as the scope ('this' reference) of the {@link #handler} function
51 * (defaults to this Checkbox).
58 initComponent : function(){
59 Ext.form.Checkbox.superclass.initComponent.call(this);
63 * Fires when the checkbox is checked or unchecked.
64 * @param {Ext.form.Checkbox} this This checkbox
65 * @param {Boolean} checked The new checked value
72 onResize : function(){
73 Ext.form.Checkbox.superclass.onResize.apply(this, arguments);
74 if(!this.boxLabel && !this.fieldLabel){
75 this.el.alignTo(this.wrap, 'c-c');
80 initEvents : function(){
81 Ext.form.Checkbox.superclass.initEvents.call(this);
91 * Overridden and disabled. The editor element does not support standard valid/invalid marking.
94 markInvalid : Ext.emptyFn,
97 * Overridden and disabled. The editor element does not support standard valid/invalid marking.
100 clearInvalid : Ext.emptyFn,
103 onRender : function(ct, position){
104 Ext.form.Checkbox.superclass.onRender.call(this, ct, position);
105 if(this.inputValue !== undefined){
106 this.el.dom.value = this.inputValue;
108 this.wrap = this.el.wrap({cls: 'x-form-check-wrap'});
110 this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
115 this.checked = this.el.dom.checked;
117 // Need to repaint for IE, otherwise positioning is broken
118 if (Ext.isIE && !Ext.isStrict) {
121 this.resizeEl = this.positionEl = this.wrap;
125 onDestroy : function(){
126 Ext.destroy(this.wrap);
127 Ext.form.Checkbox.superclass.onDestroy.call(this);
131 initValue : function() {
132 this.originalValue = this.getValue();
136 * Returns the checked state of the checkbox.
137 * @return {Boolean} True if checked, else false
139 getValue : function(){
141 return this.el.dom.checked;
147 onClick : function(){
148 if(this.el.dom.checked != this.checked){
149 this.setValue(this.el.dom.checked);
154 * Sets the checked state of the checkbox, fires the 'check' event, and calls a
155 * <code>{@link #handler}</code> (if configured).
156 * @param {Boolean/String} checked The following values will check the checkbox:
157 * <code>true, 'true', '1', or 'on'</code>. Any other value will uncheck the checkbox.
158 * @return {Ext.form.Field} this
160 setValue : function(v){
161 var checked = this.checked,
162 inputVal = this.inputValue;
164 this.checked = (v === true || v === 'true' || v == '1' || (inputVal ? v == inputVal : String(v).toLowerCase() == 'on'));
166 this.el.dom.checked = this.checked;
167 this.el.dom.defaultChecked = this.checked;
169 if(checked != this.checked){
170 this.fireEvent('check', this, this.checked);
172 this.handler.call(this.scope || this, this, this.checked);
178 Ext.reg('checkbox', Ext.form.Checkbox);