git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
81 lines
2.4 KiB
JavaScript
81 lines
2.4 KiB
JavaScript
/*
|
|
* Ext JS Library 2.3.0
|
|
* Copyright(c) 2006-2009, Ext JS, LLC.
|
|
* licensing@extjs.com
|
|
*
|
|
* http://extjs.com/license
|
|
*/
|
|
|
|
/**
|
|
* @class Ext.form.Radio
|
|
* @extends Ext.form.Checkbox
|
|
* Single radio field. Same as Checkbox, but provided as a convenience for automatically setting the input type.
|
|
* Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
|
|
* @constructor
|
|
* Creates a new Radio
|
|
* @param {Object} config Configuration options
|
|
*/
|
|
Ext.form.Radio = Ext.extend(Ext.form.Checkbox, {
|
|
// private
|
|
inputType: 'radio',
|
|
// private
|
|
baseCls: 'x-form-radio',
|
|
|
|
/**
|
|
* If this radio is part of a group, it will return the selected value
|
|
* @return {String}
|
|
*/
|
|
getGroupValue : function(){
|
|
var c = this.getParent().child('input[name='+this.el.dom.name+']:checked', true);
|
|
return c ? c.value : null;
|
|
},
|
|
|
|
// private
|
|
getParent : function(){
|
|
return this.el.up('form') || Ext.getBody();
|
|
},
|
|
|
|
// private
|
|
toggleValue : function() {
|
|
if(!this.checked){
|
|
var els = this.getParent().select('input[name='+this.el.dom.name+']');
|
|
els.each(function(el){
|
|
if(el.dom.id == this.id){
|
|
this.setValue(true);
|
|
}else{
|
|
Ext.getCmp(el.dom.id).setValue(false);
|
|
}
|
|
}, this);
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Sets either the checked/unchecked status of this Radio, or, if a string value
|
|
* is passed, checks a sibling Radio of the same name whose value is the value specified.
|
|
* @param value {String/Boolean} Checked value, or the value of the sibling radio button to check.
|
|
*/
|
|
setValue : function(v){
|
|
if(typeof v=='boolean') {
|
|
Ext.form.Radio.superclass.setValue.call(this, v);
|
|
}else{
|
|
var r = this.getParent().child('input[name='+this.el.dom.name+'][value='+v+']', true);
|
|
if(r && !r.checked){
|
|
Ext.getCmp(r.id).toggleValue();
|
|
};
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
|
|
* @method
|
|
*/
|
|
markInvalid : Ext.emptyFn,
|
|
/**
|
|
* Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
|
|
* @method
|
|
*/
|
|
clearInvalid : Ext.emptyFn
|
|
|
|
});
|
|
Ext.reg('radio', Ext.form.Radio);
|