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