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

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. Ext.onReady(function(){
  3.     var store = new Ext.data.JsonStore({
  4.         url: 'get-images.php',
  5.         root: 'images',
  6.         fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date', dateFormat:'timestamp'}]
  7.     });
  8.     store.load();
  9.     var listView = new Ext.list.ListView({
  10.         store: store,
  11.         multiSelect: true,
  12.         emptyText: 'No images to display',
  13.         reserveScrollOffset: true,
  14.         columns: [{
  15.             header: 'File',
  16.             width: .5,
  17.             dataIndex: 'name'
  18.         },{
  19.             header: 'Last Modified',
  20.             xtype: 'datecolumn',
  21.             format: 'm-d h:i a',
  22.             width: .35, 
  23.             dataIndex: 'lastmod'
  24.         },{
  25.             header: 'Size',
  26.             dataIndex: 'size',
  27.             tpl: '{size:fileSize}',
  28.             align: 'right',
  29.             cls: 'listview-filesize'
  30.         }]
  31.     });
  32.     
  33.     // put it in a Panel so it looks pretty
  34.     var panel = new Ext.Panel({
  35.         id:'images-view',
  36.         width:425,
  37.         height:250,
  38.         collapsible:true,
  39.         layout:'fit',
  40.         title:'Simple ListView <i>(0 items selected)</i>',
  41.         items: listView
  42.     });
  43.     panel.render(document.body);
  44.     // little bit of feedback
  45.     listView.on('selectionchange', function(view, nodes){
  46.         var l = nodes.length;
  47.         var s = l != 1 ? 's' : '';
  48.         panel.setTitle('Simple ListView <i>('+l+' item'+s+' selected)</i>');
  49.     });
  50. });