git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
253 lines
5.6 KiB
JavaScript
253 lines
5.6 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.FieldSet
|
|
* @extends Ext.Panel
|
|
* Standard container used for grouping form fields.
|
|
* @constructor
|
|
* @param {Object} config Configuration options
|
|
*/
|
|
Ext.form.FieldSet = Ext.extend(Ext.Panel, {
|
|
/**
|
|
* @cfg {Mixed} checkboxToggle True to render a checkbox into the fieldset frame just in front of the legend,
|
|
* or a DomHelper config object to create the checkbox. (defaults to false).
|
|
* The fieldset will be expanded or collapsed when the checkbox is toggled.
|
|
*/
|
|
/**
|
|
* @cfg {String} checkboxName The name to assign to the fieldset's checkbox if {@link #checkboxToggle} = true
|
|
* (defaults to '[checkbox id]-checkbox').
|
|
*/
|
|
/**
|
|
* @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
|
|
*/
|
|
/**
|
|
* @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
|
|
*/
|
|
/**
|
|
* @cfg {String} baseCls The base CSS class applied to the fieldset (defaults to 'x-fieldset').
|
|
*/
|
|
baseCls:'x-fieldset',
|
|
/**
|
|
* @cfg {String} layout The {@link Ext.Container#layout} to use inside the fieldset (defaults to 'form').
|
|
*/
|
|
layout: 'form',
|
|
/**
|
|
* @cfg {Boolean} animCollapse
|
|
* True to animate the transition when the panel is collapsed, false to skip the animation (defaults to false).
|
|
*/
|
|
animCollapse: false,
|
|
|
|
// private
|
|
onRender : function(ct, position){
|
|
if(!this.el){
|
|
this.el = document.createElement('fieldset');
|
|
this.el.id = this.id;
|
|
if (this.title || this.header || this.checkboxToggle) {
|
|
this.el.appendChild(document.createElement('legend')).className = 'x-fieldset-header';
|
|
}
|
|
}
|
|
|
|
Ext.form.FieldSet.superclass.onRender.call(this, ct, position);
|
|
|
|
if(this.checkboxToggle){
|
|
var o = typeof this.checkboxToggle == 'object' ?
|
|
this.checkboxToggle :
|
|
{tag: 'input', type: 'checkbox', name: this.checkboxName || this.id+'-checkbox'};
|
|
this.checkbox = this.header.insertFirst(o);
|
|
this.checkbox.dom.checked = !this.collapsed;
|
|
this.checkbox.on('click', this.onCheckClick, this);
|
|
}
|
|
},
|
|
|
|
// private
|
|
onCollapse : function(doAnim, animArg){
|
|
if(this.checkbox){
|
|
this.checkbox.dom.checked = false;
|
|
}
|
|
Ext.form.FieldSet.superclass.onCollapse.call(this, doAnim, animArg);
|
|
|
|
},
|
|
|
|
// private
|
|
onExpand : function(doAnim, animArg){
|
|
if(this.checkbox){
|
|
this.checkbox.dom.checked = true;
|
|
}
|
|
Ext.form.FieldSet.superclass.onExpand.call(this, doAnim, animArg);
|
|
},
|
|
|
|
/* //protected
|
|
* This function is called by the fieldset's checkbox when it is toggled (only applies when
|
|
* checkboxToggle = true). This method should never be called externally, but can be
|
|
* overridden to provide custom behavior when the checkbox is toggled if needed.
|
|
*/
|
|
onCheckClick : function(){
|
|
this[this.checkbox.dom.checked ? 'expand' : 'collapse']();
|
|
},
|
|
|
|
// private
|
|
beforeDestroy : function(){
|
|
if(this.checkbox){
|
|
this.checkbox.un('click', this.onCheckClick, this);
|
|
}
|
|
Ext.form.FieldSet.superclass.beforeDestroy.call(this);
|
|
}
|
|
|
|
/**
|
|
* @cfg {String/Number} activeItem
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Mixed} applyTo
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Object/Array} bbar
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} bodyBorder
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} border
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean/Number} bufferResize
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {String} buttonAlign
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Array} buttons
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} collapseFirst
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {String} defaultType
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {String} disabledClass
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {String} elements
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} floating
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} footer
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} frame
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} header
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} headerAsText
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} hideCollapseTool
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {String} iconCls
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean/String} shadow
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Number} shadowOffset
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} shim
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Object/Array} tbar
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Boolean} titleCollapse
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {Array} tools
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @cfg {String} xtype
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @property header
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @property footer
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @method focus
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @method getBottomToolbar
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @method getTopToolbar
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @method setIconClass
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @event activate
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @event beforeclose
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @event bodyresize
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @event close
|
|
* @hide
|
|
*/
|
|
/**
|
|
* @event deactivate
|
|
* @hide
|
|
*/
|
|
});
|
|
Ext.reg('fieldset', Ext.form.FieldSet);
|
|
|