Upgrade to ExtJS 3.2.2 - Released 06/02/2010
[extjs.git] / pkgs / pkg-grid-grouping-debug.js
1 /*!
2  * Ext JS Library 3.2.2
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     // private
155     initTemplates : function(){
156         Ext.grid.GroupingView.superclass.initTemplates.call(this);
157         this.state = {};
158
159         var sm = this.grid.getSelectionModel();
160         sm.on(sm.selectRow ? 'beforerowselect' : 'beforecellselect',
161                 this.onBeforeRowSelect, this);
162
163         if(!this.startGroup){
164             this.startGroup = new Ext.XTemplate(
165                 '<div id="{groupId}" class="x-grid-group {cls}">',
166                     '<div id="{groupId}-hd" class="x-grid-group-hd" style="{style}"><div class="x-grid-group-title">', this.groupTextTpl ,'</div></div>',
167                     '<div id="{groupId}-bd" class="x-grid-group-body">'
168             );
169         }
170         this.startGroup.compile();
171
172         if (!this.endGroup) {
173             this.endGroup = '</div></div>';
174         }
175     },
176
177     // private
178     findGroup : function(el){
179         return Ext.fly(el).up('.x-grid-group', this.mainBody.dom);
180     },
181
182     // private
183     getGroups : function(){
184         return this.hasRows() ? this.mainBody.dom.childNodes : [];
185     },
186
187     // private
188     onAdd : function(ds, records, index) {
189         if (this.canGroup() && !this.ignoreAdd) {
190             var ss = this.getScrollState();
191             this.fireEvent('beforerowsinserted', ds, index, index + (records.length-1));
192             this.refresh();
193             this.restoreScroll(ss);
194             this.fireEvent('rowsinserted', ds, index, index + (records.length-1));
195         } else if (!this.canGroup()) {
196             Ext.grid.GroupingView.superclass.onAdd.apply(this, arguments);
197         }
198     },
199
200     // private
201     onRemove : function(ds, record, index, isUpdate){
202         Ext.grid.GroupingView.superclass.onRemove.apply(this, arguments);
203         var g = document.getElementById(record._groupId);
204         if(g && g.childNodes[1].childNodes.length < 1){
205             Ext.removeNode(g);
206         }
207         this.applyEmptyText();
208     },
209
210     // private
211     refreshRow : function(record){
212         if(this.ds.getCount()==1){
213             this.refresh();
214         }else{
215             this.isUpdating = true;
216             Ext.grid.GroupingView.superclass.refreshRow.apply(this, arguments);
217             this.isUpdating = false;
218         }
219     },
220
221     // private
222     beforeMenuShow : function(){
223         var item, items = this.hmenu.items, disabled = this.cm.config[this.hdCtxIndex].groupable === false;
224         if((item = items.get('groupBy'))){
225             item.setDisabled(disabled);
226         }
227         if((item = items.get('showGroups'))){
228             item.setDisabled(disabled);
229             item.setChecked(this.canGroup(), true);
230         }
231     },
232
233     // private
234     renderUI : function(){
235         Ext.grid.GroupingView.superclass.renderUI.call(this);
236         this.mainBody.on('mousedown', this.interceptMouse, this);
237
238         if(this.enableGroupingMenu && this.hmenu){
239             this.hmenu.add('-',{
240                 itemId:'groupBy',
241                 text: this.groupByText,
242                 handler: this.onGroupByClick,
243                 scope: this,
244                 iconCls:'x-group-by-icon'
245             });
246             if(this.enableNoGroups){
247                 this.hmenu.add({
248                     itemId:'showGroups',
249                     text: this.showGroupsText,
250                     checked: true,
251                     checkHandler: this.onShowGroupsClick,
252                     scope: this
253                 });
254             }
255             this.hmenu.on('beforeshow', this.beforeMenuShow, this);
256         }
257     },
258
259     processEvent: function(name, e){
260         Ext.grid.GroupingView.superclass.processEvent.call(this, name, e);
261         var hd = e.getTarget('.x-grid-group-hd', this.mainBody);
262         if(hd){
263             // group value is at the end of the string
264             var field = this.getGroupField(),
265                 prefix = this.getPrefix(field),
266                 groupValue = hd.id.substring(prefix.length),
267                 emptyRe = new RegExp('gp-' + Ext.escapeRe(field) + '--hd');
268
269             // remove trailing '-hd'
270             groupValue = groupValue.substr(0, groupValue.length - 3);
271             
272             // also need to check for empty groups
273             if(groupValue || emptyRe.test(hd.id)){
274                 this.grid.fireEvent('group' + name, this.grid, field, groupValue, e);
275             }
276             if(name == 'mousedown' && e.button == 0){
277                 this.toggleGroup(hd.parentNode);
278             }
279         }
280
281     },
282
283     // private
284     onGroupByClick : function(){
285         this.enableGrouping = true;
286         this.grid.store.groupBy(this.cm.getDataIndex(this.hdCtxIndex));
287         this.grid.fireEvent('groupchange', this, this.grid.store.getGroupState());
288         this.beforeMenuShow(); // Make sure the checkboxes get properly set when changing groups
289         this.refresh();
290     },
291
292     // private
293     onShowGroupsClick : function(mi, checked){
294         this.enableGrouping = checked;
295         if(checked){
296             this.onGroupByClick();
297         }else{
298             this.grid.store.clearGrouping();
299             this.grid.fireEvent('groupchange', this, null);
300         }
301     },
302
303     /**
304      * Toggle the group that contains the specific row.
305      * @param {Number} rowIndex The row inside the group
306      * @param {Boolean} expanded (optional)
307      */
308     toggleRowIndex : function(rowIndex, expanded){
309         if(!this.canGroup()){
310             return;
311         }
312         var row = this.getRow(rowIndex);
313         if(row){
314             this.toggleGroup(this.findGroup(row), expanded);
315         }
316     },
317
318     /**
319      * Toggles the specified group if no value is passed, otherwise sets the expanded state of the group to the value passed.
320      * @param {String} groupId The groupId assigned to the group (see getGroupId)
321      * @param {Boolean} expanded (optional)
322      */
323     toggleGroup : function(group, expanded){
324         var gel = Ext.get(group);
325         expanded = Ext.isDefined(expanded) ? expanded : gel.hasClass('x-grid-group-collapsed');
326         if(this.state[gel.id] !== expanded){
327             this.grid.stopEditing(true);
328             this.state[gel.id] = expanded;
329             gel[expanded ? 'removeClass' : 'addClass']('x-grid-group-collapsed');
330         }
331     },
332
333     /**
334      * Toggles all groups if no value is passed, otherwise sets the expanded state of all groups to the value passed.
335      * @param {Boolean} expanded (optional)
336      */
337     toggleAllGroups : function(expanded){
338         var groups = this.getGroups();
339         for(var i = 0, len = groups.length; i < len; i++){
340             this.toggleGroup(groups[i], expanded);
341         }
342     },
343
344     /**
345      * Expands all grouped rows.
346      */
347     expandAllGroups : function(){
348         this.toggleAllGroups(true);
349     },
350
351     /**
352      * Collapses all grouped rows.
353      */
354     collapseAllGroups : function(){
355         this.toggleAllGroups(false);
356     },
357
358     // private
359     interceptMouse : function(e){
360         var hd = e.getTarget('.x-grid-group-hd', this.mainBody);
361         if(hd){
362             e.stopEvent();
363             this.toggleGroup(hd.parentNode);
364         }
365     },
366
367     // private
368     getGroup : function(v, r, groupRenderer, rowIndex, colIndex, ds){
369         var g = groupRenderer ? groupRenderer(v, {}, r, rowIndex, colIndex, ds) : String(v);
370         if(g === '' || g === '&#160;'){
371             g = this.cm.config[colIndex].emptyGroupText || this.emptyGroupText;
372         }
373         return g;
374     },
375
376     // private
377     getGroupField : function(){
378         return this.grid.store.getGroupState();
379     },
380
381     // private
382     afterRender : function(){
383         if(!this.ds || !this.cm){
384             return;
385         }
386         Ext.grid.GroupingView.superclass.afterRender.call(this);
387         if(this.grid.deferRowRender){
388             this.updateGroupWidths();
389         }
390     },
391
392     // private
393     renderRows : function(){
394         var groupField = this.getGroupField();
395         var eg = !!groupField;
396         // if they turned off grouping and the last grouped field is hidden
397         if(this.hideGroupedColumn) {
398             var colIndex = this.cm.findColumnIndex(groupField),
399                 hasLastGroupField = Ext.isDefined(this.lastGroupField);
400             if(!eg && hasLastGroupField){
401                 this.mainBody.update('');
402                 this.cm.setHidden(this.cm.findColumnIndex(this.lastGroupField), false);
403                 delete this.lastGroupField;
404             }else if (eg && !hasLastGroupField){
405                 this.lastGroupField = groupField;
406                 this.cm.setHidden(colIndex, true);
407             }else if (eg && hasLastGroupField && groupField !== this.lastGroupField) {
408                 this.mainBody.update('');
409                 var oldIndex = this.cm.findColumnIndex(this.lastGroupField);
410                 this.cm.setHidden(oldIndex, false);
411                 this.lastGroupField = groupField;
412                 this.cm.setHidden(colIndex, true);
413             }
414         }
415         return Ext.grid.GroupingView.superclass.renderRows.apply(
416                     this, arguments);
417     },
418
419     // private
420     doRender : function(cs, rs, ds, startRow, colCount, stripe){
421         if(rs.length < 1){
422             return '';
423         }
424
425         if(!this.canGroup() || this.isUpdating){
426             return Ext.grid.GroupingView.superclass.doRender.apply(this, arguments);
427         }
428
429         var groupField = this.getGroupField(),
430             colIndex = this.cm.findColumnIndex(groupField),
431             g,
432             gstyle = 'width:' + this.getTotalWidth() + ';',
433             cfg = this.cm.config[colIndex],
434             groupRenderer = cfg.groupRenderer || cfg.renderer,
435             prefix = this.showGroupName ? (cfg.groupName || cfg.header)+': ' : '',
436             groups = [],
437             curGroup, i, len, gid;
438
439         for(i = 0, len = rs.length; i < len; i++){
440             var rowIndex = startRow + i,
441                 r = rs[i],
442                 gvalue = r.data[groupField];
443
444                 g = this.getGroup(gvalue, r, groupRenderer, rowIndex, colIndex, ds);
445             if(!curGroup || curGroup.group != g){
446                 gid = this.constructId(gvalue, groupField, colIndex);
447                 // if state is defined use it, however state is in terms of expanded
448                 // so negate it, otherwise use the default.
449                 this.state[gid] = !(Ext.isDefined(this.state[gid]) ? !this.state[gid] : this.startCollapsed);
450                 curGroup = {
451                     group: g,
452                     gvalue: gvalue,
453                     text: prefix + g,
454                     groupId: gid,
455                     startRow: rowIndex,
456                     rs: [r],
457                     cls: this.state[gid] ? '' : 'x-grid-group-collapsed',
458                     style: gstyle
459                 };
460                 groups.push(curGroup);
461             }else{
462                 curGroup.rs.push(r);
463             }
464             r._groupId = gid;
465         }
466
467         var buf = [];
468         for(i = 0, len = groups.length; i < len; i++){
469             g = groups[i];
470             this.doGroupStart(buf, g, cs, ds, colCount);
471             buf[buf.length] = Ext.grid.GroupingView.superclass.doRender.call(
472                     this, cs, g.rs, ds, g.startRow, colCount, stripe);
473
474             this.doGroupEnd(buf, g, cs, ds, colCount);
475         }
476         return buf.join('');
477     },
478
479     /**
480      * Dynamically tries to determine the groupId of a specific value
481      * @param {String} value
482      * @return {String} The group id
483      */
484     getGroupId : function(value){
485         var field = this.getGroupField();
486         return this.constructId(value, field, this.cm.findColumnIndex(field));
487     },
488
489     // private
490     constructId : function(value, field, idx){
491         var cfg = this.cm.config[idx],
492             groupRenderer = cfg.groupRenderer || cfg.renderer,
493             val = (this.groupMode == 'value') ? value : this.getGroup(value, {data:{}}, groupRenderer, 0, idx, this.ds);
494
495         return this.getPrefix(field) + Ext.util.Format.htmlEncode(val);
496     },
497
498     // private
499     canGroup  : function(){
500         return this.enableGrouping && !!this.getGroupField();
501     },
502
503     // private
504     getPrefix: function(field){
505         return this.grid.getGridEl().id + '-gp-' + field + '-';
506     },
507
508     // private
509     doGroupStart : function(buf, g, cs, ds, colCount){
510         buf[buf.length] = this.startGroup.apply(g);
511     },
512
513     // private
514     doGroupEnd : function(buf, g, cs, ds, colCount){
515         buf[buf.length] = this.endGroup;
516     },
517
518     // private
519     getRows : function(){
520         if(!this.canGroup()){
521             return Ext.grid.GroupingView.superclass.getRows.call(this);
522         }
523         var r = [],
524             gs = this.getGroups(),
525             g,
526             i = 0,
527             len = gs.length,
528             j,
529             jlen;
530         for(; i < len; ++i){
531             g = gs[i].childNodes[1];
532             if(g){
533                 g = g.childNodes;
534                 for(j = 0, jlen = g.length; j < jlen; ++j){
535                     r[r.length] = g[j];
536                 }
537             }
538         }
539         return r;
540     },
541
542     // private
543     updateGroupWidths : function(){
544         if(!this.canGroup() || !this.hasRows()){
545             return;
546         }
547         var tw = Math.max(this.cm.getTotalWidth(), this.el.dom.offsetWidth-this.getScrollOffset()) +'px';
548         var gs = this.getGroups();
549         for(var i = 0, len = gs.length; i < len; i++){
550             gs[i].firstChild.style.width = tw;
551         }
552     },
553
554     // private
555     onColumnWidthUpdated : function(col, w, tw){
556         Ext.grid.GroupingView.superclass.onColumnWidthUpdated.call(this, col, w, tw);
557         this.updateGroupWidths();
558     },
559
560     // private
561     onAllColumnWidthsUpdated : function(ws, tw){
562         Ext.grid.GroupingView.superclass.onAllColumnWidthsUpdated.call(this, ws, tw);
563         this.updateGroupWidths();
564     },
565
566     // private
567     onColumnHiddenUpdated : function(col, hidden, tw){
568         Ext.grid.GroupingView.superclass.onColumnHiddenUpdated.call(this, col, hidden, tw);
569         this.updateGroupWidths();
570     },
571
572     // private
573     onLayout : function(){
574         this.updateGroupWidths();
575     },
576
577     // private
578     onBeforeRowSelect : function(sm, rowIndex){
579         this.toggleRowIndex(rowIndex, true);
580     }
581 });
582 // private
583 Ext.grid.GroupingView.GROUP_ID = 1000;