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

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.list.ListView
  3.  * @extends Ext.DataView
  4.  * <p>Ext.list.ListView is a fast and light-weight implentation of a
  5.  * {@link Ext.grid.GridPanel Grid} like view with the following characteristics:</p>
  6.  * <div class="mdetail-params"><ul>
  7.  * <li>resizable columns</li>
  8.  * <li>selectable</li>
  9.  * <li>column widths are initially proportioned by percentage based on the container
  10.  * width and number of columns</li>
  11.  * <li>uses templates to render the data in any required format</li>
  12.  * <li>no horizontal scrolling</li>
  13.  * <li>no editing</li>
  14.  * </ul></div>
  15.  * <p>Example usage:</p>
  16.  * <pre><code>
  17. // consume JSON of this form:
  18. {
  19.    "images":[
  20.       {
  21.          "name":"dance_fever.jpg",
  22.          "size":2067,
  23.          "lastmod":1236974993000,
  24.          "url":"images/thumbs/dance_fever.jpg"
  25.       },
  26.       {
  27.          "name":"zack_sink.jpg",
  28.          "size":2303,
  29.          "lastmod":1236974993000,
  30.          "url":"images/thumbs/zack_sink.jpg"
  31.       }
  32.    ]
  33. var store = new Ext.data.JsonStore({
  34.     url: 'get-images.php',
  35.     root: 'images',
  36.     fields: [
  37.         'name', 'url',
  38.         {name:'size', type: 'float'},
  39.         {name:'lastmod', type:'date', dateFormat:'timestamp'}
  40.     ]
  41. });
  42. store.load();
  43. var listView = new Ext.list.ListView({
  44.     store: store,
  45.     multiSelect: true,
  46.     emptyText: 'No images to display',
  47.     reserveScrollOffset: true,
  48.     columns: [{
  49.         header: 'File',
  50.         width: .5,
  51.         dataIndex: 'name'
  52.     },{
  53.         header: 'Last Modified',
  54.         width: .35, 
  55.         dataIndex: 'lastmod',
  56.         tpl: '{lastmod:date("m-d h:i a")}'
  57.     },{
  58.         header: 'Size',
  59.         dataIndex: 'size',
  60.         tpl: '{size:fileSize}', // format using Ext.util.Format.fileSize()
  61.         align: 'right'
  62.     }]
  63. });
  64. // put it in a Panel so it looks pretty
  65. var panel = new Ext.Panel({
  66.     id:'images-view',
  67.     width:425,
  68.     height:250,
  69.     collapsible:true,
  70.     layout:'fit',
  71.     title:'Simple ListView <i>(0 items selected)</i>',
  72.     items: listView
  73. });
  74. panel.render(document.body);
  75. // little bit of feedback
  76. listView.on('selectionchange', function(view, nodes){
  77.     var l = nodes.length;
  78.     var s = l != 1 ? 's' : '';
  79.     panel.setTitle('Simple ListView <i>('+l+' item'+s+' selected)</i>');
  80. });
  81.  * </code></pre>
  82.  * @constructor
  83.  * @param {Object} config
  84.  * @xtype listview
  85.  */
  86. Ext.list.ListView = Ext.extend(Ext.DataView, {
  87.     /**
  88.      * Set this property to <tt>true</tt> to disable the header click handler disabling sort
  89.      * (defaults to <tt>false</tt>).
  90.      * @type Boolean
  91.      * @property disableHeaders
  92.      */
  93.     /**
  94.      * @cfg {Boolean} hideHeaders
  95.      * <tt>true</tt> to hide the {@link #internalTpl header row} (defaults to <tt>false</tt> so
  96.      * the {@link #internalTpl header row} will be shown).
  97.      */
  98.     /**
  99.      * @cfg {String} itemSelector
  100.      * Defaults to <tt>'dl'</tt> to work with the preconfigured <b><tt>{@link Ext.DataView#tpl tpl}</tt></b>.
  101.      * This setting specifies the CSS selector (e.g. <tt>div.some-class</tt> or <tt>span:first-child</tt>)
  102.      * that will be used to determine what nodes the ListView will be working with.   
  103.      */
  104.     itemSelector: 'dl',
  105.     /**
  106.      * @cfg {String} selectedClass The CSS class applied to a selected row (defaults to
  107.      * <tt>'x-list-selected'</tt>). An example overriding the default styling:
  108.     <pre><code>
  109.     .x-list-selected {background-color: yellow;}
  110.     </code></pre>
  111.      * @type String
  112.      */
  113.     selectedClass:'x-list-selected',
  114.     /**
  115.      * @cfg {String} overClass The CSS class applied when over a row (defaults to
  116.      * <tt>'x-list-over'</tt>). An example overriding the default styling:
  117.     <pre><code>
  118.     .x-list-over {background-color: orange;}
  119.     </code></pre>
  120.      * @type String
  121.      */
  122.     overClass:'x-list-over',
  123.     /**
  124.      * @cfg {Boolean} reserveScrollOffset
  125.      * By default will defer accounting for the configured <b><tt>{@link #scrollOffset}</tt></b>
  126.      * for 10 milliseconds.  Specify <tt>true</tt> to account for the configured
  127.      * <b><tt>{@link #scrollOffset}</tt></b> immediately.
  128.      */
  129.     /**
  130.      * @cfg {Number} scrollOffset The amount of space to reserve for the scrollbar (defaults to
  131.      * <tt>undefined</tt>). If an explicit value isn't specified, this will be automatically
  132.      * calculated.
  133.      */
  134.     scrollOffset : undefined,
  135.     /**
  136.      * @cfg {Boolean/Object} columnResize
  137.      * Specify <tt>true</tt> or specify a configuration object for {@link Ext.list.ListView.ColumnResizer}
  138.      * to enable the columns to be resizable (defaults to <tt>true</tt>).
  139.      */
  140.     columnResize: true,
  141.     /**
  142.      * @cfg {Array} columns An array of column configuration objects, for example:
  143.      * <pre><code>
  144. {
  145.     align: 'right',
  146.     dataIndex: 'size',
  147.     header: 'Size',
  148.     tpl: '{size:fileSize}',
  149.     width: .35
  150. }
  151.      * </code></pre> 
  152.      * Acceptable properties for each column configuration object are:
  153.      * <div class="mdetail-params"><ul>
  154.      * <li><b><tt>align</tt></b> : String<div class="sub-desc">Set the CSS text-align property
  155.      * of the column. Defaults to <tt>'left'</tt>.</div></li>
  156.      * <li><b><tt>dataIndex</tt></b> : String<div class="sub-desc">See {@link Ext.grid.Column}.
  157.      * {@link Ext.grid.Column#dataIndex dataIndex} for details.</div></li>
  158.      * <li><b><tt>header</tt></b> : String<div class="sub-desc">See {@link Ext.grid.Column}.
  159.      * {@link Ext.grid.Column#header header} for details.</div></li>
  160.      * <li><b><tt>tpl</tt></b> : String<div class="sub-desc">Specify a string to pass as the
  161.      * configuration string for {@link Ext.XTemplate}.  By default an {@link Ext.XTemplate}
  162.      * will be implicitly created using the <tt>dataIndex</tt>.</div></li>
  163.      * <li><b><tt>width</tt></b> : Number<div class="sub-desc">Percentage of the container width
  164.      * this column should be allocated.  Columns that have no width specified will be
  165.      * allocated with an equal percentage to fill 100% of the container width.  To easily take
  166.      * advantage of the full container width, leave the width of at least one column undefined.
  167.      * Note that if you do not want to take up the full width of the container, the width of
  168.      * every column needs to be explicitly defined.</div></li>
  169.      * </ul></div>
  170.      */
  171.     /**
  172.      * @cfg {Boolean/Object} columnSort
  173.      * Specify <tt>true</tt> or specify a configuration object for {@link Ext.list.ListView.Sorter}
  174.      * to enable the columns to be sortable (defaults to <tt>true</tt>).
  175.      */
  176.     columnSort: true,
  177.     /**
  178.      * @cfg {String/Array} internalTpl
  179.      * The template to be used for the header row.  See {@link #tpl} for more details.
  180.      */
  181.     /*
  182.      * IE has issues when setting percentage based widths to 100%. Default to 99.
  183.      */
  184.     maxWidth: Ext.isIE ? 99 : 100,
  185.     
  186.     initComponent : function(){
  187.         if(this.columnResize){
  188.             this.colResizer = new Ext.list.ColumnResizer(this.colResizer);
  189.             this.colResizer.init(this);
  190.         }
  191.         if(this.columnSort){
  192.             this.colSorter = new Ext.list.Sorter(this.columnSort);
  193.             this.colSorter.init(this);
  194.         }
  195.         if(!this.internalTpl){
  196.             this.internalTpl = new Ext.XTemplate(
  197.                 '<div class="x-list-header"><div class="x-list-header-inner">',
  198.                     '<tpl for="columns">',
  199.                     '<div style="width:{[values.width*100]}%;text-align:{align};"><em unselectable="on" id="',this.id, '-xlhd-{#}">',
  200.                         '{header}',
  201.                     '</em></div>',
  202.                     '</tpl>',
  203.                     '<div class="x-clear"></div>',
  204.                 '</div></div>',
  205.                 '<div class="x-list-body"><div class="x-list-body-inner">',
  206.                 '</div></div>'
  207.             );
  208.         }
  209.         if(!this.tpl){
  210.             this.tpl = new Ext.XTemplate(
  211.                 '<tpl for="rows">',
  212.                     '<dl>',
  213.                         '<tpl for="parent.columns">',
  214.                         '<dt style="width:{[values.width*100]}%;text-align:{align};">',
  215.                         '<em unselectable="on"<tpl if="cls"> class="{cls}</tpl>">',
  216.                             '{[values.tpl.apply(parent)]}',
  217.                         '</em></dt>',
  218.                         '</tpl>',
  219.                         '<div class="x-clear"></div>',
  220.                     '</dl>',
  221.                 '</tpl>'
  222.             );
  223.         };
  224.         
  225.         var cs = this.columns, 
  226.             allocatedWidth = 0, 
  227.             colsWithWidth = 0, 
  228.             len = cs.length, 
  229.             columns = [];
  230.             
  231.         for(var i = 0; i < len; i++){
  232.             var c = cs[i];
  233.             if(!c.isColumn) {
  234.                 c.xtype = c.xtype ? (/^lv/.test(c.xtype) ? c.xtype : 'lv' + c.xtype) : 'lvcolumn';
  235.                 c = Ext.create(c);
  236.             }
  237.             if(c.width) {
  238.                 allocatedWidth += c.width*100;
  239.                 colsWithWidth++;
  240.             }
  241.             columns.push(c);
  242.         }
  243.         
  244.         cs = this.columns = columns;
  245.         
  246.         // auto calculate missing column widths
  247.         if(colsWithWidth < len){
  248.             var remaining = len - colsWithWidth;
  249.             if(allocatedWidth < this.maxWidth){
  250.                 var perCol = ((this.maxWidth-allocatedWidth) / remaining)/100;
  251.                 for(var j = 0; j < len; j++){
  252.                     var c = cs[j];
  253.                     if(!c.width){
  254.                         c.width = perCol;
  255.                     }
  256.                 }
  257.             }
  258.         }
  259.         Ext.list.ListView.superclass.initComponent.call(this);
  260.     },
  261.     onRender : function(){
  262.         this.autoEl = {
  263.             cls: 'x-list-wrap'  
  264.         };
  265.         Ext.list.ListView.superclass.onRender.apply(this, arguments);
  266.         this.internalTpl.overwrite(this.el, {columns: this.columns});
  267.         
  268.         this.innerBody = Ext.get(this.el.dom.childNodes[1].firstChild);
  269.         this.innerHd = Ext.get(this.el.dom.firstChild.firstChild);
  270.         if(this.hideHeaders){
  271.             this.el.dom.firstChild.style.display = 'none';
  272.         }
  273.     },
  274.     getTemplateTarget : function(){
  275.         return this.innerBody;
  276.     },
  277.     /**
  278.      * <p>Function which can be overridden which returns the data object passed to this
  279.      * view's {@link #tpl template} to render the whole ListView. The returned object 
  280.      * shall contain the following properties:</p>
  281.      * <div class="mdetail-params"><ul>
  282.      * <li><b>columns</b> : String<div class="sub-desc">See <tt>{@link #columns}</tt></div></li>
  283.      * <li><b>rows</b> : String<div class="sub-desc">See
  284.      * <tt>{@link Ext.DataView}.{@link Ext.DataView#collectData collectData}</div></li>
  285.      * </ul></div>
  286.      * @param {Array} records An Array of {@link Ext.data.Record}s to be rendered into the DataView.
  287.      * @param {Number} startIndex the index number of the Record being prepared for rendering.
  288.      * @return {Object} A data object containing properties to be processed by a repeating
  289.      * XTemplate as described above.
  290.      */
  291.     collectData : function(){
  292.         var rs = Ext.list.ListView.superclass.collectData.apply(this, arguments);
  293.         return {
  294.             columns: this.columns,
  295.             rows: rs
  296.         }
  297.     },
  298.     verifyInternalSize : function(){
  299.         if(this.lastSize){
  300.             this.onResize(this.lastSize.width, this.lastSize.height);
  301.         }
  302.     },
  303.     // private
  304.     onResize : function(w, h){
  305.         var bd = this.innerBody.dom;
  306.         var hd = this.innerHd.dom
  307.         if(!bd){
  308.             return;
  309.         }
  310.         var bdp = bd.parentNode;
  311.         if(Ext.isNumber(w)){
  312.             var sw = w - Ext.num(this.scrollOffset, Ext.getScrollBarWidth());
  313.             if(this.reserveScrollOffset || ((bdp.offsetWidth - bdp.clientWidth) > 10)){
  314.                 bd.style.width = sw + 'px';
  315.                 hd.style.width = sw + 'px';
  316.             }else{
  317.                 bd.style.width = w + 'px';
  318.                 hd.style.width = w + 'px';
  319.                 setTimeout(function(){
  320.                     if((bdp.offsetWidth - bdp.clientWidth) > 10){
  321.                         bd.style.width = sw + 'px';
  322.                         hd.style.width = sw + 'px';
  323.                     }
  324.                 }, 10);
  325.             }
  326.         }
  327.         if(Ext.isNumber(h)){
  328.             bdp.style.height = (h - hd.parentNode.offsetHeight) + 'px';
  329.         }
  330.     },
  331.     updateIndexes : function(){
  332.         Ext.list.ListView.superclass.updateIndexes.apply(this, arguments);
  333.         this.verifyInternalSize();
  334.     },
  335.     findHeaderIndex : function(hd){
  336.         hd = hd.dom || hd;
  337.         var pn = hd.parentNode, cs = pn.parentNode.childNodes;
  338.         for(var i = 0, c; c = cs[i]; i++){
  339.             if(c == pn){
  340.                 return i;
  341.             }
  342.         }
  343.         return -1;
  344.     },
  345.     setHdWidths : function(){
  346.         var els = this.innerHd.dom.getElementsByTagName('div');
  347.         for(var i = 0, cs = this.columns, len = cs.length; i < len; i++){
  348.             els[i].style.width = (cs[i].width*100) + '%';
  349.         }
  350.     }
  351. });
  352. Ext.reg('listview', Ext.list.ListView);
  353. // Backwards compatibility alias
  354. Ext.ListView = Ext.list.ListView;