FormLayout.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:15k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.layout.FormLayout
  9.  * @extends Ext.layout.AnchorLayout
  10.  * <p>This layout manager is specifically designed for rendering and managing child Components of
  11.  * {@link Ext.form.FormPanel forms}. It is responsible for rendering the labels of
  12.  * {@link Ext.form.Field Field}s.</p>
  13.  *
  14.  * <p>This layout manager is used when a Container is configured with the <tt>layout:'form'</tt>
  15.  * {@link Ext.Container#layout layout} config option, and should generally not need to be created directly
  16.  * via the new keyword. See <tt><b>{@link Ext.Container#layout}</b></tt> for additional details.</p>
  17.  *
  18.  * <p>In an application, it will usually be preferrable to use a {@link Ext.form.FormPanel FormPanel}
  19.  * (which is configured with FormLayout as its layout class by default) since it also provides built-in
  20.  * functionality for {@link Ext.form.BasicForm#doAction loading, validating and submitting} the form.</p>
  21.  *
  22.  * <p>A {@link Ext.Container Container} <i>using</i> the FormLayout layout manager (e.g.
  23.  * {@link Ext.form.FormPanel} or specifying <tt>layout:'form'</tt>) can also accept the following
  24.  * layout-specific config properties:<div class="mdetail-params"><ul>
  25.  * <li><b><tt>{@link Ext.form.FormPanel#hideLabels hideLabels}</tt></b></li>
  26.  * <li><b><tt>{@link Ext.form.FormPanel#labelAlign labelAlign}</tt></b></li>
  27.  * <li><b><tt>{@link Ext.form.FormPanel#labelPad labelPad}</tt></b></li>
  28.  * <li><b><tt>{@link Ext.form.FormPanel#labelSeparator labelSeparator}</tt></b></li>
  29.  * <li><b><tt>{@link Ext.form.FormPanel#labelWidth labelWidth}</tt></b></li>
  30.  * </ul></div></p>
  31.  *
  32.  * <p>Any Component (including Fields) managed by FormLayout accepts the following as a config option:
  33.  * <div class="mdetail-params"><ul>
  34.  * <li><b><tt>{@link Ext.Component#anchor anchor}</tt></b></li>
  35.  * </ul></div></p>
  36.  *
  37.  * <p>Any Component managed by FormLayout may be rendered as a form field (with an associated label) by
  38.  * configuring it with a non-null <b><tt>{@link Ext.Component#fieldLabel fieldLabel}</tt></b>. Components configured
  39.  * in this way may be configured with the following options which affect the way the FormLayout renders them:
  40.  * <div class="mdetail-params"><ul>
  41.  * <li><b><tt>{@link Ext.Component#clearCls clearCls}</tt></b></li>
  42.  * <li><b><tt>{@link Ext.Component#fieldLabel fieldLabel}</tt></b></li>
  43.  * <li><b><tt>{@link Ext.Component#hideLabel hideLabel}</tt></b></li>
  44.  * <li><b><tt>{@link Ext.Component#itemCls itemCls}</tt></b></li>
  45.  * <li><b><tt>{@link Ext.Component#labelSeparator labelSeparator}</tt></b></li>
  46.  * <li><b><tt>{@link Ext.Component#labelStyle labelStyle}</tt></b></li>
  47.  * </ul></div></p>
  48.  *
  49.  * <p>Example usage:</p>
  50.  * <pre><code>
  51. // Required if showing validation messages
  52. Ext.QuickTips.init();
  53. // While you can create a basic Panel with layout:'form', practically
  54. // you should usually use a FormPanel to also get its form functionality
  55. // since it already creates a FormLayout internally.
  56. var form = new Ext.form.FormPanel({
  57.     title: 'Form Layout',
  58.     bodyStyle: 'padding:15px',
  59.     width: 350,
  60.     defaultType: 'textfield',
  61.     defaults: {
  62.         // applied to each contained item
  63.         width: 230,
  64.         msgTarget: 'side'
  65.     },
  66.     items: [{
  67.             fieldLabel: 'First Name',
  68.             name: 'first',
  69.             allowBlank: false,
  70.             {@link Ext.Component#labelSeparator labelSeparator}: ':' // override labelSeparator layout config
  71.         },{
  72.             fieldLabel: 'Last Name',
  73.             name: 'last'
  74.         },{
  75.             fieldLabel: 'Email',
  76.             name: 'email',
  77.             vtype:'email'
  78.         }, {
  79.             xtype: 'textarea',
  80.             hideLabel: true,     // override hideLabels layout config
  81.             name: 'msg',
  82.             anchor: '100% -53'
  83.         }
  84.     ],
  85.     buttons: [
  86.         {text: 'Save'},
  87.         {text: 'Cancel'}
  88.     ],
  89.     layoutConfig: {
  90.         {@link #labelSeparator}: '~' // superseded by assignment below
  91.     },
  92.     // config options applicable to container when layout='form':
  93.     hideLabels: false,
  94.     labelAlign: 'left',   // or 'right' or 'top'
  95.     {@link Ext.form.FormPanel#labelSeparator labelSeparator}: '>>', // takes precedence over layoutConfig value
  96.     labelWidth: 65,       // defaults to 100
  97.     labelPad: 8           // defaults to 5, must specify labelWidth to be honored
  98. });
  99. </code></pre>
  100.  */
  101. Ext.layout.FormLayout = Ext.extend(Ext.layout.AnchorLayout, {
  102.     /**
  103.      * @cfg {String} labelSeparator
  104.      * See {@link Ext.form.FormPanel}.{@link Ext.form.FormPanel#labelSeparator labelSeparator}.  Configuration
  105.      * of this property at the <b>container</b> level takes precedence.
  106.      */
  107.     labelSeparator : ':',
  108.     /**
  109.      * Read only. The CSS style specification string added to field labels in this layout if not
  110.      * otherwise {@link Ext.Component#labelStyle specified by each contained field}.
  111.      * @type String
  112.      * @property labelStyle
  113.      */
  114.     /**
  115.      * @cfg {Boolean} trackLabels
  116.      * True to show/hide the field label when the field is hidden. Defaults to <tt>false</tt>.
  117.      */
  118.     trackLabels: false,
  119.     onRemove: function(c){
  120.         Ext.layout.FormLayout.superclass.onRemove.call(this, c);
  121.         if(this.trackLabels){
  122.             c.un('show', this.onFieldShow, this);
  123.             c.un('hide', this.onFieldHide, this);
  124.         }
  125.         // check for itemCt, since we may be removing a fieldset or something similar
  126.         var el = c.getPositionEl(),
  127.                 ct = c.getItemCt && c.getItemCt();
  128.         if(c.rendered && ct){
  129.             if (el && el.dom) {
  130.                 el.insertAfter(ct);
  131.             }
  132.             Ext.destroy(ct);
  133.             Ext.destroyMembers(c, 'label', 'itemCt');
  134.             if(c.customItemCt){
  135.                 Ext.destroyMembers(c, 'getItemCt', 'customItemCt');
  136.             }
  137.         }
  138.     },
  139.     // private
  140.     setContainer : function(ct){
  141.         Ext.layout.FormLayout.superclass.setContainer.call(this, ct);
  142.         if(ct.labelAlign){
  143.             ct.addClass('x-form-label-'+ct.labelAlign);
  144.         }
  145.         if(ct.hideLabels){
  146.             Ext.apply(this, {
  147.                 labelStyle: 'display:none',
  148.                 elementStyle: 'padding-left:0;',
  149.                 labelAdjust: 0
  150.             });
  151.         }else{
  152.             this.labelSeparator = ct.labelSeparator || this.labelSeparator;
  153.             ct.labelWidth = ct.labelWidth || 100;
  154.             if(Ext.isNumber(ct.labelWidth)){
  155.                 var pad = Ext.isNumber(ct.labelPad) ? ct.labelPad : 5;
  156.                 Ext.apply(this, {
  157.                     labelAdjust: ct.labelWidth + pad,
  158.                     labelStyle: 'width:' + ct.labelWidth + 'px;',
  159.                     elementStyle: 'padding-left:' + (ct.labelWidth + pad) + 'px'
  160.                 });
  161.             }
  162.             if(ct.labelAlign == 'top'){
  163.                 Ext.apply(this, {
  164.                     labelStyle: 'width:auto;',
  165.                     labelAdjust: 0,
  166.                     elementStyle: 'padding-left:0;'
  167.                 });
  168.             }
  169.         }
  170.     },
  171.     // private
  172.     isHide: function(c){
  173.         return c.hideLabel || this.container.hideLabels;
  174.     },
  175.     onFieldShow: function(c){
  176.         c.getItemCt().removeClass('x-hide-' + c.hideMode);
  177.     },
  178.     onFieldHide: function(c){
  179.         c.getItemCt().addClass('x-hide-' + c.hideMode);
  180.     },
  181.     //private
  182.     getLabelStyle: function(s){
  183.         var ls = '', items = [this.labelStyle, s];
  184.         for (var i = 0, len = items.length; i < len; ++i){
  185.             if (items[i]){
  186.                 ls += items[i];
  187.                 if (ls.substr(-1, 1) != ';'){
  188.                     ls += ';'
  189.                 }
  190.             }
  191.         }
  192.         return ls;
  193.     },
  194.     /**
  195.      * @cfg {Ext.Template} fieldTpl
  196.      * A {@link Ext.Template#compile compile}d {@link Ext.Template} for rendering
  197.      * the fully wrapped, labeled and styled form Field. Defaults to:</p><pre><code>
  198. new Ext.Template(
  199.     &#39;&lt;div class="x-form-item {itemCls}" tabIndex="-1">&#39;,
  200.         &#39;&lt;&#108;abel for="{id}" style="{labelStyle}" class="x-form-item-&#108;abel">{&#108;abel}{labelSeparator}&lt;/&#108;abel>&#39;,
  201.         &#39;&lt;div class="x-form-element" id="x-form-el-{id}" style="{elementStyle}">&#39;,
  202.         &#39;&lt;/div>&lt;div class="{clearCls}">&lt;/div>&#39;,
  203.     '&lt;/div>'
  204. );
  205. </code></pre>
  206.      * <p>This may be specified to produce a different DOM structure when rendering form Fields.</p>
  207.      * <p>A description of the properties within the template follows:</p><div class="mdetail-params"><ul>
  208.      * <li><b><tt>itemCls</tt></b> : String<div class="sub-desc">The CSS class applied to the outermost div wrapper
  209.      * that contains this field label and field element (the default class is <tt>'x-form-item'</tt> and <tt>itemCls</tt>
  210.      * will be added to that). If supplied, <tt>itemCls</tt> at the field level will override the default <tt>itemCls</tt>
  211.      * supplied at the container level.</div></li>
  212.      * <li><b><tt>id</tt></b> : String<div class="sub-desc">The id of the Field</div></li>
  213.      * <li><b><tt>{@link #labelStyle}</tt></b> : String<div class="sub-desc">
  214.      * A CSS style specification string to add to the field label for this field (defaults to <tt>''</tt> or the
  215.      * {@link #labelStyle layout's value for <tt>labelStyle</tt>}).</div></li>
  216.      * <li><b><tt>label</tt></b> : String<div class="sub-desc">The text to display as the label for this
  217.      * field (defaults to <tt>''</tt>)</div></li>
  218.      * <li><b><tt>{@link #labelSeparator}</tt></b> : String<div class="sub-desc">The separator to display after
  219.      * the text of the label for this field (defaults to a colon <tt>':'</tt> or the
  220.      * {@link #labelSeparator layout's value for labelSeparator}). To hide the separator use empty string ''.</div></li>
  221.      * <li><b><tt>elementStyle</tt></b> : String<div class="sub-desc">The styles text for the input element's wrapper.</div></li>
  222.      * <li><b><tt>clearCls</tt></b> : String<div class="sub-desc">The CSS class to apply to the special clearing div
  223.      * rendered directly after each form field wrapper (defaults to <tt>'x-form-clear-left'</tt>)</div></li>
  224.      * </ul></div>
  225.      * <p>Also see <tt>{@link #getTemplateArgs}</tt></p>
  226.      */
  227.     // private
  228.     renderItem : function(c, position, target){
  229.         if(c && (c.isFormField || c.fieldLabel) && c.inputType != 'hidden'){
  230.             var args = this.getTemplateArgs(c);
  231.             if(Ext.isNumber(position)){
  232.                 position = target.dom.childNodes[position] || null;
  233.             }
  234.             if(position){
  235.                 c.itemCt = this.fieldTpl.insertBefore(position, args, true);
  236.             }else{
  237.                 c.itemCt = this.fieldTpl.append(target, args, true);
  238.             }
  239.             if(!c.getItemCt){
  240.                 // Non form fields don't have getItemCt, apply it here
  241.                 // This will get cleaned up in onRemove
  242.                 Ext.apply(c, {
  243.                     getItemCt: function(){
  244.                         return c.itemCt;
  245.                     },
  246.                     customItemCt: true
  247.                 });
  248.             }
  249.             c.label = c.getItemCt().child('label.x-form-item-label');
  250.             if(!c.rendered){
  251.                 c.render('x-form-el-' + c.id);
  252.             }else if(!this.isValidParent(c, target)){
  253.                 Ext.fly('x-form-el-' + c.id).appendChild(c.getPositionEl());
  254.             }
  255.             if(this.trackLabels){
  256.                 if(c.hidden){
  257.                     this.onFieldHide(c);
  258.                 }
  259.                 c.on({
  260.                     scope: this,
  261.                     show: this.onFieldShow,
  262.                     hide: this.onFieldHide
  263.                 });
  264.             }
  265.             this.configureItem(c);
  266.         }else {
  267.             Ext.layout.FormLayout.superclass.renderItem.apply(this, arguments);
  268.         }
  269.     },
  270.     /**
  271.      * <p>Provides template arguments for rendering the fully wrapped, labeled and styled form Field.</p>
  272.      * <p>This method returns an object hash containing properties used by the layout's {@link #fieldTpl}
  273.      * to create a correctly wrapped, labeled and styled form Field. This may be overriden to
  274.      * create custom layouts. The properties which must be returned are:</p><div class="mdetail-params"><ul>
  275.      * <li><b><tt>itemCls</tt></b> : String<div class="sub-desc">The CSS class applied to the outermost div wrapper
  276.      * that contains this field label and field element (the default class is <tt>'x-form-item'</tt> and <tt>itemCls</tt>
  277.      * will be added to that). If supplied, <tt>itemCls</tt> at the field level will override the default <tt>itemCls</tt>
  278.      * supplied at the container level.</div></li>
  279.      * <li><b><tt>id</tt></b> : String<div class="sub-desc">The id of the Field</div></li>
  280.      * <li><b><tt>{@link #labelStyle}</tt></b> : String<div class="sub-desc">
  281.      * A CSS style specification string to add to the field label for this field (defaults to <tt>''</tt> or the
  282.      * {@link #labelStyle layout's value for <tt>labelStyle</tt>}).</div></li>
  283.      * <li><b><tt>label</tt></b> : String<div class="sub-desc">The text to display as the label for this
  284.      * field (defaults to <tt>''</tt>)</div></li>
  285.      * <li><b><tt>{@link #labelSeparator}</tt></b> : String<div class="sub-desc">The separator to display after
  286.      * the text of the label for this field (defaults to a colon <tt>':'</tt> or the
  287.      * {@link #labelSeparator layout's value for labelSeparator}). To hide the separator use empty string ''.</div></li>
  288.      * <li><b><tt>elementStyle</tt></b> : String<div class="sub-desc">The styles text for the input element's wrapper.</div></li>
  289.      * <li><b><tt>clearCls</tt></b> : String<div class="sub-desc">The CSS class to apply to the special clearing div
  290.      * rendered directly after each form field wrapper (defaults to <tt>'x-form-clear-left'</tt>)</div></li>
  291.      * </ul></div>
  292.      * @param (Ext.form.Field} field The {@link Ext.form.Field Field} being rendered.
  293.      * @return An object hash containing the properties required to render the Field.
  294.      */
  295.     getTemplateArgs: function(field) {
  296.         var noLabelSep = !field.fieldLabel || field.hideLabel;
  297.         return {
  298.             id: field.id,
  299.             label: field.fieldLabel,
  300.             labelStyle: this.getLabelStyle(field.labelStyle),
  301.             elementStyle: this.elementStyle||'',
  302.             labelSeparator: noLabelSep ? '' : (Ext.isDefined(field.labelSeparator) ? field.labelSeparator : this.labelSeparator),
  303.             itemCls: (field.itemCls||this.container.itemCls||'') + (field.hideLabel ? ' x-hide-label' : ''),
  304.             clearCls: field.clearCls || 'x-form-clear-left'
  305.         };
  306.     },
  307.     // private
  308.     adjustWidthAnchor: function(value, c){
  309.         if(c.label && !this.isHide(c) && (this.container.labelAlign != 'top')){
  310.             var adjust = Ext.isIE6 || (Ext.isIE && !Ext.isStrict);
  311.             return value - this.labelAdjust + (adjust ? -3 : 0);
  312.         }
  313.         return value;
  314.     },
  315.     adjustHeightAnchor : function(value, c){
  316.         if(c.label && !this.isHide(c) && (this.container.labelAlign == 'top')){
  317.             return value - c.label.getHeight();
  318.         }
  319.         return value;
  320.     },
  321.     // private
  322.     isValidParent : function(c, target){
  323.         return target && this.container.getEl().contains(c.getPositionEl());
  324.     }
  325.     /**
  326.      * @property activeItem
  327.      * @hide
  328.      */
  329. });
  330. Ext.Container.LAYOUTS['form'] = Ext.layout.FormLayout;