Roo/grid/Grid.js
[roojs1] / Roo / grid / Grid.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12 /**
13  * @class Roo.grid.Grid
14  * @extends Roo.util.Observable
15  * This class represents the primary interface of a component based grid control.
16  * <br><br>Usage:<pre><code>
17  var grid = new Roo.grid.Grid("my-container-id", {
18      ds: myDataStore,
19      cm: myColModel,
20      selModel: mySelectionModel,
21      autoSizeColumns: true,
22      monitorWindowResize: false,
23      trackMouseOver: true
24  });
25  // set any options
26  grid.render();
27  * </code></pre>
28  * <b>Common Problems:</b><br/>
29  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
30  * element will correct this<br/>
31  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
32  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
33  * are unpredictable.<br/>
34  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
35  * grid to calculate dimensions/offsets.<br/>
36   * @constructor
37  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
38  * The container MUST have some type of size defined for the grid to fill. The container will be
39  * automatically set to position relative if it isn't already.
40  * @param {Object} config A config object that sets properties on this grid.
41  */
42 Roo.grid.Grid = function(container, config){
43         // initialize the container
44         this.container = Roo.get(container);
45         this.container.update("");
46         this.container.setStyle("overflow", "hidden");
47     this.container.addClass('x-grid-container');
48
49     this.id = this.container.id;
50
51     Roo.apply(this, config);
52     // check and correct shorthanded configs
53     if(this.ds){
54         this.dataSource = this.ds;
55         delete this.ds;
56     }
57     if(this.cm){
58         this.colModel = this.cm;
59         delete this.cm;
60     }
61     if(this.sm){
62         this.selModel = this.sm;
63         delete this.sm;
64     }
65
66     if (this.selModel) {
67         this.selModel = Roo.factory(this.selModel, Roo.grid);
68         this.sm = this.selModel;
69         this.sm.xmodule = this.xmodule || false;
70     }
71     if (typeof(this.colModel.config) == 'undefined') {
72         this.colModel = new Roo.grid.ColumnModel(this.colModel);
73         this.cm = this.colModel;
74         this.cm.xmodule = this.xmodule || false;
75     }
76     if (this.dataSource) {
77         this.dataSource= Roo.factory(this.dataSource, Roo.data);
78         this.ds = this.dataSource;
79         this.ds.xmodule = this.xmodule || false;
80         
81     }
82     
83     
84     
85     if(this.width){
86         this.container.setWidth(this.width);
87     }
88
89     if(this.height){
90         this.container.setHeight(this.height);
91     }
92     /** @private */
93         this.addEvents({
94             // raw events
95             /**
96              * @event click
97              * The raw click event for the entire grid.
98              * @param {Roo.EventObject} e
99              */
100             "click" : true,
101             /**
102              * @event dblclick
103              * The raw dblclick event for the entire grid.
104              * @param {Roo.EventObject} e
105              */
106             "dblclick" : true,
107             /**
108              * @event contextmenu
109              * The raw contextmenu event for the entire grid.
110              * @param {Roo.EventObject} e
111              */
112             "contextmenu" : true,
113             /**
114              * @event mousedown
115              * The raw mousedown event for the entire grid.
116              * @param {Roo.EventObject} e
117              */
118             "mousedown" : true,
119             /**
120              * @event mouseup
121              * The raw mouseup event for the entire grid.
122              * @param {Roo.EventObject} e
123              */
124             "mouseup" : true,
125             /**
126              * @event mouseover
127              * The raw mouseover event for the entire grid.
128              * @param {Roo.EventObject} e
129              */
130             "mouseover" : true,
131             /**
132              * @event mouseout
133              * The raw mouseout event for the entire grid.
134              * @param {Roo.EventObject} e
135              */
136             "mouseout" : true,
137             /**
138              * @event keypress
139              * The raw keypress event for the entire grid.
140              * @param {Roo.EventObject} e
141              */
142             "keypress" : true,
143             /**
144              * @event keydown
145              * The raw keydown event for the entire grid.
146              * @param {Roo.EventObject} e
147              */
148             "keydown" : true,
149
150             // custom events
151
152             /**
153              * @event cellclick
154              * Fires when a cell is clicked
155              * @param {Grid} this
156              * @param {Number} rowIndex
157              * @param {Number} columnIndex
158              * @param {Roo.EventObject} e
159              */
160             "cellclick" : true,
161             /**
162              * @event celldblclick
163              * Fires when a cell is double clicked
164              * @param {Grid} this
165              * @param {Number} rowIndex
166              * @param {Number} columnIndex
167              * @param {Roo.EventObject} e
168              */
169             "celldblclick" : true,
170             /**
171              * @event rowclick
172              * Fires when a row is clicked
173              * @param {Grid} this
174              * @param {Number} rowIndex
175              * @param {Roo.EventObject} e
176              */
177             "rowclick" : true,
178             /**
179              * @event rowdblclick
180              * Fires when a row is double clicked
181              * @param {Grid} this
182              * @param {Number} rowIndex
183              * @param {Roo.EventObject} e
184              */
185             "rowdblclick" : true,
186             /**
187              * @event headerclick
188              * Fires when a header is clicked
189              * @param {Grid} this
190              * @param {Number} columnIndex
191              * @param {Roo.EventObject} e
192              */
193             "headerclick" : true,
194             /**
195              * @event headerdblclick
196              * Fires when a header cell is double clicked
197              * @param {Grid} this
198              * @param {Number} columnIndex
199              * @param {Roo.EventObject} e
200              */
201             "headerdblclick" : true,
202             /**
203              * @event rowcontextmenu
204              * Fires when a row is right clicked
205              * @param {Grid} this
206              * @param {Number} rowIndex
207              * @param {Roo.EventObject} e
208              */
209             "rowcontextmenu" : true,
210             /**
211          * @event cellcontextmenu
212          * Fires when a cell is right clicked
213          * @param {Grid} this
214          * @param {Number} rowIndex
215          * @param {Number} cellIndex
216          * @param {Roo.EventObject} e
217          */
218          "cellcontextmenu" : true,
219             /**
220              * @event headercontextmenu
221              * Fires when a header is right clicked
222              * @param {Grid} this
223              * @param {Number} columnIndex
224              * @param {Roo.EventObject} e
225              */
226             "headercontextmenu" : true,
227             /**
228              * @event bodyscroll
229              * Fires when the body element is scrolled
230              * @param {Number} scrollLeft
231              * @param {Number} scrollTop
232              */
233             "bodyscroll" : true,
234             /**
235              * @event columnresize
236              * Fires when the user resizes a column
237              * @param {Number} columnIndex
238              * @param {Number} newSize
239              */
240             "columnresize" : true,
241             /**
242              * @event columnmove
243              * Fires when the user moves a column
244              * @param {Number} oldIndex
245              * @param {Number} newIndex
246              */
247             "columnmove" : true,
248             /**
249              * @event startdrag
250              * Fires when row(s) start being dragged
251              * @param {Grid} this
252              * @param {Roo.GridDD} dd The drag drop object
253              * @param {event} e The raw browser event
254              */
255             "startdrag" : true,
256             /**
257              * @event enddrag
258              * Fires when a drag operation is complete
259              * @param {Grid} this
260              * @param {Roo.GridDD} dd The drag drop object
261              * @param {event} e The raw browser event
262              */
263             "enddrag" : true,
264             /**
265              * @event dragdrop
266              * Fires when dragged row(s) are dropped on a valid DD target
267              * @param {Grid} this
268              * @param {Roo.GridDD} dd The drag drop object
269              * @param {String} targetId The target drag drop object
270              * @param {event} e The raw browser event
271              */
272             "dragdrop" : true,
273             /**
274              * @event dragover
275              * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
276              * @param {Grid} this
277              * @param {Roo.GridDD} dd The drag drop object
278              * @param {String} targetId The target drag drop object
279              * @param {event} e The raw browser event
280              */
281             "dragover" : true,
282             /**
283              * @event dragenter
284              *  Fires when the dragged row(s) first cross another DD target while being dragged
285              * @param {Grid} this
286              * @param {Roo.GridDD} dd The drag drop object
287              * @param {String} targetId The target drag drop object
288              * @param {event} e The raw browser event
289              */
290             "dragenter" : true,
291             /**
292              * @event dragout
293              * Fires when the dragged row(s) leave another DD target while being dragged
294              * @param {Grid} this
295              * @param {Roo.GridDD} dd The drag drop object
296              * @param {String} targetId The target drag drop object
297              * @param {event} e The raw browser event
298              */
299             "dragout" : true,
300         /**
301          * @event render
302          * Fires when the grid is rendered
303          * @param {Grid} grid
304          */
305         render : true
306     });
307
308     Roo.grid.Grid.superclass.constructor.call(this);
309 };
310 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
311     /**
312      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
313          */
314         minColumnWidth : 25,
315
316     /**
317          * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
318          * <b>on initial render.</b> It is more efficient to explicitly size the columns
319          * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
320          */
321         autoSizeColumns : false,
322
323         /**
324          * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
325          */
326         autoSizeHeaders : true,
327
328         /**
329          * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
330          */
331         monitorWindowResize : true,
332
333         /**
334          * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
335          * rows measured to get a columns size. Default is 0 (all rows).
336          */
337         maxRowsToMeasure : 0,
338
339         /**
340          * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
341          */
342         trackMouseOver : true,
343
344         /**
345          * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
346          */
347         enableDragDrop : false,
348
349         /**
350          * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
351          */
352         enableColumnMove : true,
353
354         /**
355          * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
356          */
357         enableColumnHide : true,
358
359         /**
360          * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
361          */
362         enableRowHeightSync : false,
363
364         /**
365          * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
366          */
367         stripeRows : true,
368
369         /**
370          * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
371          */
372         autoHeight : false,
373
374     /**
375      * @cfg {String} autoExpandColumn The id (or dataIndex) of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.
376      */
377     autoExpandColumn : false,
378
379     /**
380     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
381     * Default is 50.
382     */
383     autoExpandMin : 50,
384
385     /**
386     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
387     */
388     autoExpandMax : 1000,
389
390     /**
391          * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
392          */
393         view : null,
394
395         /**
396      * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
397          */
398         loadMask : false,
399
400     // private
401     rendered : false,
402
403     /**
404     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
405     * of a fixed width. Default is false.
406     */
407     /**
408     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
409     */
410     /**
411      * Called once after all setup has been completed and the grid is ready to be rendered.
412      * @return {Roo.grid.Grid} this
413      */
414     render : function(){
415         var c = this.container;
416         // try to detect autoHeight/width mode
417         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
418             this.autoHeight = true;
419         }
420         var view = this.getView();
421         view.init(this);
422
423         c.on("click", this.onClick, this);
424         c.on("dblclick", this.onDblClick, this);
425         c.on("contextmenu", this.onContextMenu, this);
426         c.on("keydown", this.onKeyDown, this);
427
428         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
429
430         this.getSelectionModel().init(this);
431
432         view.render();
433
434         if(this.loadMask){
435             this.loadMask = new Roo.LoadMask(this.container,
436                     Roo.apply({store:this.dataSource}, this.loadMask));
437         }
438         
439         
440         if (this.toolbar && this.toolbar.xtype) {
441             this.toolbar.container = this.getView().getHeaderPanel(true);
442             this.toolbar = new Ext.Toolbar(this.toolbar);
443         }
444         if (this.footer && this.footer.xtype) {
445             this.footer.dataSource = this.getDataSource();
446             this.footer.container = this.getView().getFooterPanel(true);
447             this.footer = Roo.factory(this.footer, Roo);
448         }
449         this.rendered = true;
450         this.fireEvent('render', this);
451         return this;
452     },
453
454         /**
455          * Reconfigures the grid to use a different Store and Column Model.
456          * The View will be bound to the new objects and refreshed.
457          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
458          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
459          */
460     reconfigure : function(dataSource, colModel){
461         if(this.loadMask){
462             this.loadMask.destroy();
463             this.loadMask = new Roo.LoadMask(this.container,
464                     Roo.apply({store:dataSource}, this.loadMask));
465         }
466         this.view.bind(dataSource, colModel);
467         this.dataSource = dataSource;
468         this.colModel = colModel;
469         this.view.refresh(true);
470     },
471
472     // private
473     onKeyDown : function(e){
474         this.fireEvent("keydown", e);
475     },
476
477     /**
478      * Destroy this grid.
479      * @param {Boolean} removeEl True to remove the element
480      */
481     destroy : function(removeEl, keepListeners){
482         if(this.loadMask){
483             this.loadMask.destroy();
484         }
485         var c = this.container;
486         c.removeAllListeners();
487         this.view.destroy();
488         this.colModel.purgeListeners();
489         if(!keepListeners){
490             this.purgeListeners();
491         }
492         c.update("");
493         if(removeEl === true){
494             c.remove();
495         }
496     },
497
498     // private
499     processEvent : function(name, e){
500         this.fireEvent(name, e);
501         var t = e.getTarget();
502         var v = this.view;
503         var header = v.findHeaderIndex(t);
504         if(header !== false){
505             this.fireEvent("header" + name, this, header, e);
506         }else{
507             var row = v.findRowIndex(t);
508             var cell = v.findCellIndex(t);
509             if(row !== false){
510                 this.fireEvent("row" + name, this, row, e);
511                 if(cell !== false){
512                     this.fireEvent("cell" + name, this, row, cell, e);
513                 }
514             }
515         }
516     },
517
518     // private
519     onClick : function(e){
520         this.processEvent("click", e);
521     },
522
523     // private
524     onContextMenu : function(e, t){
525         this.processEvent("contextmenu", e);
526     },
527
528     // private
529     onDblClick : function(e){
530         this.processEvent("dblclick", e);
531     },
532
533     // private
534     walkCells : function(row, col, step, fn, scope){
535         var cm = this.colModel, clen = cm.getColumnCount();
536         var ds = this.dataSource, rlen = ds.getCount(), first = true;
537         if(step < 0){
538             if(col < 0){
539                 row--;
540                 first = false;
541             }
542             while(row >= 0){
543                 if(!first){
544                     col = clen-1;
545                 }
546                 first = false;
547                 while(col >= 0){
548                     if(fn.call(scope || this, row, col, cm) === true){
549                         return [row, col];
550                     }
551                     col--;
552                 }
553                 row--;
554             }
555         } else {
556             if(col >= clen){
557                 row++;
558                 first = false;
559             }
560             while(row < rlen){
561                 if(!first){
562                     col = 0;
563                 }
564                 first = false;
565                 while(col < clen){
566                     if(fn.call(scope || this, row, col, cm) === true){
567                         return [row, col];
568                     }
569                     col++;
570                 }
571                 row++;
572             }
573         }
574         return null;
575     },
576
577     // private
578     getSelections : function(){
579         return this.selModel.getSelections();
580     },
581
582     /**
583      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
584      * but if manual update is required this method will initiate it.
585      */
586     autoSize : function(){
587         if(this.rendered){
588             this.view.layout();
589             if(this.view.adjustForScroll){
590                 this.view.adjustForScroll();
591             }
592         }
593     },
594
595     /**
596      * Returns the grid's underlying element.
597      * @return {Element} The element
598      */
599     getGridEl : function(){
600         return this.container;
601     },
602
603     // private for compatibility, overridden by editor grid
604     stopEditing : function(){},
605
606     /**
607      * Returns the grid's SelectionModel.
608      * @return {SelectionModel}
609      */
610     getSelectionModel : function(){
611         if(!this.selModel){
612             this.selModel = new Roo.grid.RowSelectionModel();
613         }
614         return this.selModel;
615     },
616
617     /**
618      * Returns the grid's DataSource.
619      * @return {DataSource}
620      */
621     getDataSource : function(){
622         return this.dataSource;
623     },
624
625     /**
626      * Returns the grid's ColumnModel.
627      * @return {ColumnModel}
628      */
629     getColumnModel : function(){
630         return this.colModel;
631     },
632
633     /**
634      * Returns the grid's GridView object.
635      * @return {GridView}
636      */
637     getView : function(){
638         if(!this.view){
639             this.view = new Roo.grid.GridView(this.viewConfig);
640         }
641         return this.view;
642     },
643     /**
644      * Called to get grid's drag proxy text, by default returns this.ddText.
645      * @return {String}
646      */
647     getDragDropText : function(){
648         var count = this.selModel.getCount();
649         return String.format(this.ddText, count, count == 1 ? '' : 's');
650     }
651 });
652 /**
653  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
654  * %0 is replaced with the number of selected rows.
655  * @type String
656  */
657 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";