ColumnLayout.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:5k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.layout.ColumnLayout
  3.  * @extends Ext.layout.ContainerLayout
  4.  * <p>This is the layout style of choice for creating structural layouts in a multi-column format where the width of
  5.  * each column can be specified as a percentage or fixed width, but the height is allowed to vary based on the content.
  6.  * This class is intended to be extended or created via the layout:'column' {@link Ext.Container#layout} config,
  7.  * and should generally not need to be created directly via the new keyword.</p>
  8.  * <p>ColumnLayout does not have any direct config options (other than inherited ones), but it does support a
  9.  * specific config property of <b><tt>columnWidth</tt></b> that can be included in the config of any panel added to it.  The
  10.  * layout will use the columnWidth (if present) or width of each panel during layout to determine how to size each panel.
  11.  * If width or columnWidth is not specified for a given panel, its width will default to the panel's width (or auto).</p>
  12.  * <p>The width property is always evaluated as pixels, and must be a number greater than or equal to 1.
  13.  * The columnWidth property is always evaluated as a percentage, and must be a decimal value greater than 0 and
  14.  * less than 1 (e.g., .25).</p>
  15.  * <p>The basic rules for specifying column widths are pretty simple.  The logic makes two passes through the
  16.  * set of contained panels.  During the first layout pass, all panels that either have a fixed width or none
  17.  * specified (auto) are skipped, but their widths are subtracted from the overall container width.  During the second
  18.  * pass, all panels with columnWidths are assigned pixel widths in proportion to their percentages based on
  19.  * the total <b>remaining</b> container width.  In other words, percentage width panels are designed to fill the space
  20.  * left over by all the fixed-width and/or auto-width panels.  Because of this, while you can specify any number of columns
  21.  * with different percentages, the columnWidths must always add up to 1 (or 100%) when added together, otherwise your
  22.  * layout may not render as expected.  Example usage:</p>
  23.  * <pre><code>
  24. // All columns are percentages -- they must add up to 1
  25. var p = new Ext.Panel({
  26.     title: 'Column Layout - Percentage Only',
  27.     layout:'column',
  28.     items: [{
  29.         title: 'Column 1',
  30.         columnWidth: .25 
  31.     },{
  32.         title: 'Column 2',
  33.         columnWidth: .6
  34.     },{
  35.         title: 'Column 3',
  36.         columnWidth: .15
  37.     }]
  38. });
  39. // Mix of width and columnWidth -- all columnWidth values must add up
  40. // to 1. The first column will take up exactly 120px, and the last two
  41. // columns will fill the remaining container width.
  42. var p = new Ext.Panel({
  43.     title: 'Column Layout - Mixed',
  44.     layout:'column',
  45.     items: [{
  46.         title: 'Column 1',
  47.         width: 120
  48.     },{
  49.         title: 'Column 2',
  50.         columnWidth: .8
  51.     },{
  52.         title: 'Column 3',
  53.         columnWidth: .2
  54.     }]
  55. });
  56. </code></pre>
  57.  */
  58. Ext.layout.ColumnLayout = Ext.extend(Ext.layout.ContainerLayout, {
  59.     // private
  60.     monitorResize:true,
  61.     
  62.     extraCls: 'x-column',
  63.     scrollOffset : 0,
  64.     // private
  65.     isValidParent : function(c, target){
  66.         return (c.getPositionEl ? c.getPositionEl() : c.getEl()).dom.parentNode == this.innerCt.dom;
  67.     },
  68.     // private
  69.     onLayout : function(ct, target){
  70.         var cs = ct.items.items, len = cs.length, c, i;
  71.         if(!this.innerCt){
  72.             target.addClass('x-column-layout-ct');
  73.             // the innerCt prevents wrapping and shuffling while
  74.             // the container is resizing
  75.             this.innerCt = target.createChild({cls:'x-column-inner'});
  76.             this.innerCt.createChild({cls:'x-clear'});
  77.         }
  78.         this.renderAll(ct, this.innerCt);
  79.         var size = Ext.isIE && target.dom != Ext.getBody().dom ? target.getStyleSize() : target.getViewSize();
  80.         if(size.width < 1 && size.height < 1){ // display none?
  81.             return;
  82.         }
  83.         var w = size.width - target.getPadding('lr') - this.scrollOffset,
  84.             h = size.height - target.getPadding('tb'),
  85.             pw = w;
  86.         this.innerCt.setWidth(w);
  87.         
  88.         // some columns can be percentages while others are fixed
  89.         // so we need to make 2 passes
  90.         for(i = 0; i < len; i++){
  91.             c = cs[i];
  92.             if(!c.columnWidth){
  93.                 pw -= (c.getSize().width + c.getEl().getMargins('lr'));
  94.             }
  95.         }
  96.         pw = pw < 0 ? 0 : pw;
  97.         for(i = 0; i < len; i++){
  98.             c = cs[i];
  99.             if(c.columnWidth){
  100.                 c.setSize(Math.floor(c.columnWidth*pw) - c.getEl().getMargins('lr'));
  101.             }
  102.         }
  103.     }
  104.     
  105.     /**
  106.      * @property activeItem
  107.      * @hide
  108.      */
  109. });
  110. Ext.Container.LAYOUTS['column'] = Ext.layout.ColumnLayout;