Upgrade to ExtJS 3.3.0 - Released 10/06/2010
[extjs.git] / pkgs / pkg-grid-grouping-debug.js
1 /*!
2  * Ext JS Library 3.3.0
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8  * @class Ext.grid.GroupingView
9  * @extends Ext.grid.GridView
10  * Adds the ability for single level grouping to the grid. A {@link Ext.data.GroupingStore GroupingStore}
11  * must be used to enable grouping.  Some grouping characteristics may also be configured at the
12  * {@link Ext.grid.Column Column level}<div class="mdetail-params"><ul>
13  * <li><code>{@link Ext.grid.Column#emptyGroupText emptyGroupText}</code></li>
14  * <li><code>{@link Ext.grid.Column#groupable groupable}</code></li>
15  * <li><code>{@link Ext.grid.Column#groupName groupName}</code></li>
16  * <li><code>{@link Ext.grid.Column#groupRender groupRender}</code></li>
17  * </ul></div>
18  * <p>Sample usage:</p>
19  * <pre><code>
20 var grid = new Ext.grid.GridPanel({
21     // A groupingStore is required for a GroupingView
22     store: new {@link Ext.data.GroupingStore}({
23         autoDestroy: true,
24         reader: reader,
25         data: xg.dummyData,
26         sortInfo: {field: 'company', direction: 'ASC'},
27         {@link Ext.data.GroupingStore#groupOnSort groupOnSort}: true,
28         {@link Ext.data.GroupingStore#remoteGroup remoteGroup}: true,
29         {@link Ext.data.GroupingStore#groupField groupField}: 'industry'
30     }),
31     colModel: new {@link Ext.grid.ColumnModel}({
32         columns:[
33             {id:'company',header: 'Company', width: 60, dataIndex: 'company'},
34             // {@link Ext.grid.Column#groupable groupable}, {@link Ext.grid.Column#groupName groupName}, {@link Ext.grid.Column#groupRender groupRender} are also configurable at column level
35             {header: 'Price', renderer: Ext.util.Format.usMoney, dataIndex: 'price', {@link Ext.grid.Column#groupable groupable}: false},
36             {header: 'Change', dataIndex: 'change', renderer: Ext.util.Format.usMoney},
37             {header: 'Industry', dataIndex: 'industry'},
38             {header: 'Last Updated', renderer: Ext.util.Format.dateRenderer('m/d/Y'), dataIndex: 'lastChange'}
39         ],
40         defaults: {
41             sortable: true,
42             menuDisabled: false,
43             width: 20
44         }
45     }),
46
47     view: new Ext.grid.GroupingView({
48         {@link Ext.grid.GridView#forceFit forceFit}: true,
49         // custom grouping text template to display the number of items per group
50         {@link #groupTextTpl}: '{text} ({[values.rs.length]} {[values.rs.length > 1 ? "Items" : "Item"]})'
51     }),
52
53     frame:true,
54     width: 700,
55     height: 450,
56     collapsible: true,
57     animCollapse: false,
58     title: 'Grouping Example',
59     iconCls: 'icon-grid',
60     renderTo: document.body
61 });
62  * </code></pre>
63  * @constructor
64  * @param {Object} config
65  */
66 Ext.grid.GroupingView = Ext.extend(Ext.grid.GridView, {
67
68     /**
69      * @cfg {String} groupByText Text displayed in the grid header menu for grouping by a column
70      * (defaults to 'Group By This Field').
71      */
72     groupByText : 'Group By This Field',
73     /**
74      * @cfg {String} showGroupsText Text displayed in the grid header for enabling/disabling grouping
75      * (defaults to 'Show in Groups').
76      */
77     showGroupsText : 'Show in Groups',
78     /**
79      * @cfg {Boolean} hideGroupedColumn <tt>true</tt> to hide the column that is currently grouped (defaults to <tt>false</tt>)
80      */
81     hideGroupedColumn : false,
82     /**
83      * @cfg {Boolean} showGroupName If <tt>true</tt> will display a prefix plus a ': ' before the group field value
84      * in the group header line.  The prefix will consist of the <tt><b>{@link Ext.grid.Column#groupName groupName}</b></tt>
85      * (or the configured <tt><b>{@link Ext.grid.Column#header header}</b></tt> if not provided) configured in the
86      * {@link Ext.grid.Column} for each set of grouped rows (defaults to <tt>true</tt>).
87      */
88     showGroupName : true,
89     /**
90      * @cfg {Boolean} startCollapsed <tt>true</tt> to start all groups collapsed (defaults to <tt>false</tt>)
91      */
92     startCollapsed : false,
93     /**
94      * @cfg {Boolean} enableGrouping <tt>false</tt> to disable grouping functionality (defaults to <tt>true</tt>)
95      */
96     enableGrouping : true,
97     /**
98      * @cfg {Boolean} enableGroupingMenu <tt>true</tt> to enable the grouping control in the column menu (defaults to <tt>true</tt>)
99      */
100     enableGroupingMenu : true,
101     /**
102      * @cfg {Boolean} enableNoGroups <tt>true</tt> to allow the user to turn off grouping (defaults to <tt>true</tt>)
103      */
104     enableNoGroups : true,
105     /**
106      * @cfg {String} emptyGroupText The text to display when there is an empty group value (defaults to <tt>'(None)'</tt>).
107      * May also be specified per column, see {@link Ext.grid.Column}.{@link Ext.grid.Column#emptyGroupText emptyGroupText}.
108      */
109     emptyGroupText : '(None)',
110     /**
111      * @cfg {Boolean} ignoreAdd <tt>true</tt> to skip refreshing the view when new rows are added (defaults to <tt>false</tt>)
112      */
113     ignoreAdd : false,
114     /**
115      * @cfg {String} groupTextTpl The template used to render the group header (defaults to <tt>'{text}'</tt>).
116      * This is used to format an object which contains the following properties:
117      * <div class="mdetail-params"><ul>
118      * <li><b>group</b> : String<p class="sub-desc">The <i>rendered</i> value of the group field.
119      * By default this is the unchanged value of the group field. If a <tt><b>{@link Ext.grid.Column#groupRenderer groupRenderer}</b></tt>
120      * is specified, it is the result of a call to that function.</p></li>
121      * <li><b>gvalue</b> : Object<p class="sub-desc">The <i>raw</i> value of the group field.</p></li>
122      * <li><b>text</b> : String<p class="sub-desc">The configured header (as described in <tt>{@link #showGroupName})</tt>
123      * if <tt>{@link #showGroupName}</tt> is <tt>true</tt>) plus the <i>rendered</i> group field value.</p></li>
124      * <li><b>groupId</b> : String<p class="sub-desc">A unique, generated ID which is applied to the
125      * View Element which contains the group.</p></li>
126      * <li><b>startRow</b> : Number<p class="sub-desc">The row index of the Record which caused group change.</p></li>
127      * <li><b>rs</b> : Array<p class="sub-desc">Contains a single element: The Record providing the data
128      * for the row which caused group change.</p></li>
129      * <li><b>cls</b> : String<p class="sub-desc">The generated class name string to apply to the group header Element.</p></li>
130      * <li><b>style</b> : String<p class="sub-desc">The inline style rules to apply to the group header Element.</p></li>
131      * </ul></div></p>
132      * See {@link Ext.XTemplate} for information on how to format data using a template. Possible usage:<pre><code>
133 var grid = new Ext.grid.GridPanel({
134     ...
135     view: new Ext.grid.GroupingView({
136         groupTextTpl: '{text} ({[values.rs.length]} {[values.rs.length > 1 ? "Items" : "Item"]})'
137     }),
138 });
139      * </code></pre>
140      */
141     groupTextTpl : '{text}',
142
143     /**
144      * @cfg {String} groupMode Indicates how to construct the group identifier. <tt>'value'</tt> constructs the id using
145      * raw value, <tt>'display'</tt> constructs the id using the rendered value. Defaults to <tt>'value'</tt>.
146      */
147     groupMode: 'value',
148
149     /**
150      * @cfg {Function} groupRenderer This property must be configured in the {@link Ext.grid.Column} for
151      * each column.
152      */
153     
154     /**
155      * @cfg {Boolean} cancelEditOnToggle True to cancel any editing when the group header is toggled. Defaults to <tt>true</tt>.
156      */
157     cancelEditOnToggle: true,
158
159     // private
160     initTemplates : function(){
161         Ext.grid.GroupingView.superclass.initTemplates.call(this);
162         this.state = {};
163
164         var sm = this.grid.getSelectionModel();
165         sm.on(sm.selectRow ? 'beforerowselect' : 'beforecellselect',
166                 this.onBeforeRowSelect, this);
167
168         if(!this.startGroup){
169             this.startGroup = new Ext.XTemplate(
170                 '<div id="{groupId}" class="x-grid-group {cls}">',
171                     '<div id="{groupId}-hd" class="x-grid-group-hd" style="{style}"><div class="x-grid-group-title">', this.groupTextTpl ,'</div></div>',
172                     '<div id="{groupId}-bd" class="x-grid-group-body">'
173             );
174         }
175         this.startGroup.compile();
176
177         if (!this.endGroup) {
178             this.endGroup = '</div></div>';
179         }
180     },
181
182     // private
183     findGroup : function(el){
184         return Ext.fly(el).up('.x-grid-group', this.mainBody.dom);
185     },
186
187     // private
188     getGroups : function(){
189         return this.hasRows() ? this.mainBody.dom.childNodes : [];
190     },
191
192     // private
193     onAdd : function(ds, records, index) {
194         if (this.canGroup() && !this.ignoreAdd) {
195             var ss = this.getScrollState();
196             this.fireEvent('beforerowsinserted', ds, index, index + (records.length-1));
197             this.refresh();
198             this.restoreScroll(ss);
199             this.fireEvent('rowsinserted', ds, index, index + (records.length-1));
200         } else if (!this.canGroup()) {
201             Ext.grid.GroupingView.superclass.onAdd.apply(this, arguments);
202         }
203     },
204
205     // private
206     onRemove : function(ds, record, index, isUpdate){
207         Ext.grid.GroupingView.superclass.onRemove.apply(this, arguments);
208         var g = document.getElementById(record._groupId);
209         if(g && g.childNodes[1].childNodes.length < 1){
210             Ext.removeNode(g);
211         }
212         this.applyEmptyText();
213     },
214
215     // private
216     refreshRow : function(record){
217         if(this.ds.getCount()==1){
218             this.refresh();
219         }else{
220             this.isUpdating = true;
221             Ext.grid.GroupingView.superclass.refreshRow.apply(this, arguments);
222             this.isUpdating = false;
223         }
224     },
225
226     // private
227     beforeMenuShow : function(){
228         var item, items = this.hmenu.items, disabled = this.cm.config[this.hdCtxIndex].groupable === false;
229         if((item = items.get('groupBy'))){
230             item.setDisabled(disabled);
231         }
232         if((item = items.get('showGroups'))){
233             item.setDisabled(disabled);
234             item.setChecked(this.canGroup(), true);
235         }
236     },
237
238     // private
239     renderUI : function(){
240         var markup = Ext.grid.GroupingView.superclass.renderUI.call(this);
241
242         if(this.enableGroupingMenu && this.hmenu){
243             this.hmenu.add('-',{
244                 itemId:'groupBy',
245                 text: this.groupByText,
246                 handler: this.onGroupByClick,
247                 scope: this,
248                 iconCls:'x-group-by-icon'
249             });
250             if(this.enableNoGroups){
251                 this.hmenu.add({
252                     itemId:'showGroups',
253                     text: this.showGroupsText,
254                     checked: true,
255                     checkHandler: this.onShowGroupsClick,
256                     scope: this
257                 });
258             }
259             this.hmenu.on('beforeshow', this.beforeMenuShow, this);
260         }
261         return markup;
262     },
263
264     processEvent: function(name, e){
265         Ext.grid.GroupingView.superclass.processEvent.call(this, name, e);
266         var hd = e.getTarget('.x-grid-group-hd', this.mainBody);
267         if(hd){
268             // group value is at the end of the string
269             var field = this.getGroupField(),
270                 prefix = this.getPrefix(field),
271                 groupValue = hd.id.substring(prefix.length),
272                 emptyRe = new RegExp('gp-' + Ext.escapeRe(field) + '--hd');
273
274             // remove trailing '-hd'
275             groupValue = groupValue.substr(0, groupValue.length - 3);
276             
277             // also need to check for empty groups
278             if(groupValue || emptyRe.test(hd.id)){
279                 this.grid.fireEvent('group' + name, this.grid, field, groupValue, e);
280             }
281             if(name == 'mousedown' && e.button == 0){
282                 this.toggleGroup(hd.parentNode);
283             }
284         }
285
286     },
287
288     // private
289     onGroupByClick : function(){
290         this.enableGrouping = true;
291         this.grid.store.groupBy(this.cm.getDataIndex(this.hdCtxIndex));
292         this.grid.fireEvent('groupchange', this, this.grid.store.getGroupState());
293         this.beforeMenuShow(); // Make sure the checkboxes get properly set when changing groups
294         this.refresh();
295     },
296
297     // private
298     onShowGroupsClick : function(mi, checked){
299         this.enableGrouping = checked;
300         if(checked){
301             this.onGroupByClick();
302         }else{
303             this.grid.store.clearGrouping();
304             this.grid.fireEvent('groupchange', this, null);
305         }
306     },
307
308     /**
309      * Toggle the group that contains the specific row.
310      * @param {Number} rowIndex The row inside the group
311      * @param {Boolean} expanded (optional)
312      */
313     toggleRowIndex : function(rowIndex, expanded){
314         if(!this.canGroup()){
315             return;
316         }
317         var row = this.getRow(rowIndex);
318         if(row){
319             this.toggleGroup(this.findGroup(row), expanded);
320         }
321     },
322
323     /**
324      * Toggles the specified group if no value is passed, otherwise sets the expanded state of the group to the value passed.
325      * @param {String} groupId The groupId assigned to the group (see getGroupId)
326      * @param {Boolean} expanded (optional)
327      */
328     toggleGroup : function(group, expanded){
329         var gel = Ext.get(group);
330         expanded = Ext.isDefined(expanded) ? expanded : gel.hasClass('x-grid-group-collapsed');
331         if(this.state[gel.id] !== expanded){
332             if (this.cancelEditOnToggle !== false) {
333                 this.grid.stopEditing(true);
334             }
335             this.state[gel.id] = expanded;
336             gel[expanded ? 'removeClass' : 'addClass']('x-grid-group-collapsed');
337         }
338     },
339
340     /**
341      * Toggles all groups if no value is passed, otherwise sets the expanded state of all groups to the value passed.
342      * @param {Boolean} expanded (optional)
343      */
344     toggleAllGroups : function(expanded){
345         var groups = this.getGroups();
346         for(var i = 0, len = groups.length; i < len; i++){
347             this.toggleGroup(groups[i], expanded);
348         }
349     },
350
351     /**
352      * Expands all grouped rows.
353      */
354     expandAllGroups : function(){
355         this.toggleAllGroups(true);
356     },
357
358     /**
359      * Collapses all grouped rows.
360      */
361     collapseAllGroups : function(){
362         this.toggleAllGroups(false);
363     },
364
365     // private
366     getGroup : function(v, r, groupRenderer, rowIndex, colIndex, ds){
367         var column = this.cm.config[colIndex],
368             g = groupRenderer ? groupRenderer.call(column.scope, v, {}, r, rowIndex, colIndex, ds) : String(v);
369         if(g === '' || g === '&#160;'){
370             g = column.emptyGroupText || this.emptyGroupText;
371         }
372         return g;
373     },
374
375     // private
376     getGroupField : function(){
377         return this.grid.store.getGroupState();
378     },
379
380     // private
381     afterRender : function(){
382         if(!this.ds || !this.cm){
383             return;
384         }
385         Ext.grid.GroupingView.superclass.afterRender.call(this);
386         if(this.grid.deferRowRender){
387             this.updateGroupWidths();
388         }
389     },
390     
391     afterRenderUI: function () {
392         Ext.grid.GroupingView.superclass.afterRenderUI.call(this);
393
394         if (this.enableGroupingMenu && this.hmenu) {
395             this.hmenu.add('-',{
396                 itemId:'groupBy',
397                 text: this.groupByText,
398                 handler: this.onGroupByClick,
399                 scope: this,
400                 iconCls:'x-group-by-icon'
401             });
402             
403             if (this.enableNoGroups) {
404                 this.hmenu.add({
405                     itemId:'showGroups',
406                     text: this.showGroupsText,
407                     checked: true,
408                     checkHandler: this.onShowGroupsClick,
409                     scope: this
410                 });
411             }
412             
413             this.hmenu.on('beforeshow', this.beforeMenuShow, this);
414         }
415     },
416
417     // private
418     renderRows : function(){
419         var groupField = this.getGroupField();
420         var eg = !!groupField;
421         // if they turned off grouping and the last grouped field is hidden
422         if(this.hideGroupedColumn) {
423             var colIndex = this.cm.findColumnIndex(groupField),
424                 hasLastGroupField = Ext.isDefined(this.lastGroupField);
425             if(!eg && hasLastGroupField){
426                 this.mainBody.update('');
427                 this.cm.setHidden(this.cm.findColumnIndex(this.lastGroupField), false);
428                 delete this.lastGroupField;
429             }else if (eg && !hasLastGroupField){
430                 this.lastGroupField = groupField;
431                 this.cm.setHidden(colIndex, true);
432             }else if (eg && hasLastGroupField && groupField !== this.lastGroupField) {
433                 this.mainBody.update('');
434                 var oldIndex = this.cm.findColumnIndex(this.lastGroupField);
435                 this.cm.setHidden(oldIndex, false);
436                 this.lastGroupField = groupField;
437                 this.cm.setHidden(colIndex, true);
438             }
439         }
440         return Ext.grid.GroupingView.superclass.renderRows.apply(
441                     this, arguments);
442     },
443
444     // private
445     doRender : function(cs, rs, ds, startRow, colCount, stripe){
446         if(rs.length < 1){
447             return '';
448         }
449
450         if(!this.canGroup() || this.isUpdating){
451             return Ext.grid.GroupingView.superclass.doRender.apply(this, arguments);
452         }
453
454         var groupField = this.getGroupField(),
455             colIndex = this.cm.findColumnIndex(groupField),
456             g,
457             gstyle = 'width:' + this.getTotalWidth() + ';',
458             cfg = this.cm.config[colIndex],
459             groupRenderer = cfg.groupRenderer || cfg.renderer,
460             prefix = this.showGroupName ? (cfg.groupName || cfg.header)+': ' : '',
461             groups = [],
462             curGroup, i, len, gid;
463
464         for(i = 0, len = rs.length; i < len; i++){
465             var rowIndex = startRow + i,
466                 r = rs[i],
467                 gvalue = r.data[groupField];
468
469                 g = this.getGroup(gvalue, r, groupRenderer, rowIndex, colIndex, ds);
470             if(!curGroup || curGroup.group != g){
471                 gid = this.constructId(gvalue, groupField, colIndex);
472                 // if state is defined use it, however state is in terms of expanded
473                 // so negate it, otherwise use the default.
474                 this.state[gid] = !(Ext.isDefined(this.state[gid]) ? !this.state[gid] : this.startCollapsed);
475                 curGroup = {
476                     group: g,
477                     gvalue: gvalue,
478                     text: prefix + g,
479                     groupId: gid,
480                     startRow: rowIndex,
481                     rs: [r],
482                     cls: this.state[gid] ? '' : 'x-grid-group-collapsed',
483                     style: gstyle
484                 };
485                 groups.push(curGroup);
486             }else{
487                 curGroup.rs.push(r);
488             }
489             r._groupId = gid;
490         }
491
492         var buf = [];
493         for(i = 0, len = groups.length; i < len; i++){
494             g = groups[i];
495             this.doGroupStart(buf, g, cs, ds, colCount);
496             buf[buf.length] = Ext.grid.GroupingView.superclass.doRender.call(
497                     this, cs, g.rs, ds, g.startRow, colCount, stripe);
498
499             this.doGroupEnd(buf, g, cs, ds, colCount);
500         }
501         return buf.join('');
502     },
503
504     /**
505      * Dynamically tries to determine the groupId of a specific value
506      * @param {String} value
507      * @return {String} The group id
508      */
509     getGroupId : function(value){
510         var field = this.getGroupField();
511         return this.constructId(value, field, this.cm.findColumnIndex(field));
512     },
513
514     // private
515     constructId : function(value, field, idx){
516         var cfg = this.cm.config[idx],
517             groupRenderer = cfg.groupRenderer || cfg.renderer,
518             val = (this.groupMode == 'value') ? value : this.getGroup(value, {data:{}}, groupRenderer, 0, idx, this.ds);
519
520         return this.getPrefix(field) + Ext.util.Format.htmlEncode(val);
521     },
522
523     // private
524     canGroup  : function(){
525         return this.enableGrouping && !!this.getGroupField();
526     },
527
528     // private
529     getPrefix: function(field){
530         return this.grid.getGridEl().id + '-gp-' + field + '-';
531     },
532
533     // private
534     doGroupStart : function(buf, g, cs, ds, colCount){
535         buf[buf.length] = this.startGroup.apply(g);
536     },
537
538     // private
539     doGroupEnd : function(buf, g, cs, ds, colCount){
540         buf[buf.length] = this.endGroup;
541     },
542
543     // private
544     getRows : function(){
545         if(!this.canGroup()){
546             return Ext.grid.GroupingView.superclass.getRows.call(this);
547         }
548         var r = [],
549             gs = this.getGroups(),
550             g,
551             i = 0,
552             len = gs.length,
553             j,
554             jlen;
555         for(; i < len; ++i){
556             g = gs[i].childNodes[1];
557             if(g){
558                 g = g.childNodes;
559                 for(j = 0, jlen = g.length; j < jlen; ++j){
560                     r[r.length] = g[j];
561                 }
562             }
563         }
564         return r;
565     },
566
567     // private
568     updateGroupWidths : function(){
569         if(!this.canGroup() || !this.hasRows()){
570             return;
571         }
572         var tw = Math.max(this.cm.getTotalWidth(), this.el.dom.offsetWidth-this.getScrollOffset()) +'px';
573         var gs = this.getGroups();
574         for(var i = 0, len = gs.length; i < len; i++){
575             gs[i].firstChild.style.width = tw;
576         }
577     },
578
579     // private
580     onColumnWidthUpdated : function(col, w, tw){
581         Ext.grid.GroupingView.superclass.onColumnWidthUpdated.call(this, col, w, tw);
582         this.updateGroupWidths();
583     },
584
585     // private
586     onAllColumnWidthsUpdated : function(ws, tw){
587         Ext.grid.GroupingView.superclass.onAllColumnWidthsUpdated.call(this, ws, tw);
588         this.updateGroupWidths();
589     },
590
591     // private
592     onColumnHiddenUpdated : function(col, hidden, tw){
593         Ext.grid.GroupingView.superclass.onColumnHiddenUpdated.call(this, col, hidden, tw);
594         this.updateGroupWidths();
595     },
596
597     // private
598     onLayout : function(){
599         this.updateGroupWidths();
600     },
601
602     // private
603     onBeforeRowSelect : function(sm, rowIndex){
604         this.toggleRowIndex(rowIndex, true);
605     }
606 });
607 // private
608 Ext.grid.GroupingView.GROUP_ID = 1000;