Roo/grid/Calendar.js
[roojs1] / Roo / grid / Calendar.js
1 /*
2   
3  * Licence LGPL
4  
5  */
6  
7 /**
8  * @class Roo.grid.Calendar
9  * @extends Roo.util.Grid
10  * This class extends the Grid to provide a calendar widget
11  * <br><br>Usage:<pre><code>
12  var grid = new Roo.grid.Calendar("my-container-id", {
13      ds: myDataStore,
14      cm: myColModel,
15      selModel: mySelectionModel,
16      autoSizeColumns: true,
17      monitorWindowResize: false,
18      trackMouseOver: true
19      eventstore : real data store..
20  });
21  // set any options
22  grid.render();
23   
24   * @constructor
25  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
26  * The container MUST have some type of size defined for the grid to fill. The container will be
27  * automatically set to position relative if it isn't already.
28  * @param {Object} config A config object that sets properties on this grid.
29  */
30 Roo.grid.Calendar = function(container, config){
31         // initialize the container
32         this.container = Roo.get(container);
33         this.container.update("");
34         this.container.setStyle("overflow", "hidden");
35     this.container.addClass('x-grid-container');
36
37     this.id = this.container.id;
38
39     Roo.apply(this, config);
40     // check and correct shorthanded configs
41     
42     var rows = [];
43     var d =1;
44     for (var r = 0;r < 6;r++) {
45         
46         rows[r]=[];
47         for (var c =0;c < 7;c++) {
48             rows[r][c]= '';
49         }
50     }
51     if (this.eventStore) {
52         this.eventStore= Roo.factory(this.eventStore, Roo.data);
53         this.eventStore.on('load',this.onLoad, this);
54         this.eventStore.on('beforeload',this.clearEvents, this);
55          
56     }
57     
58     this.dataSource = new Roo.data.Store({
59             proxy: new Roo.data.MemoryProxy(rows),
60             reader: new Roo.data.ArrayReader({}, [
61                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
62     });
63
64     this.dataSource.load();
65     this.ds = this.dataSource;
66     this.ds.xmodule = this.xmodule || false;
67     
68     
69     var cellRender = function(v,x,r)
70     {
71         return String.format(
72             '<div class="fc-day  fc-widget-content"><div>' +
73                 '<div class="fc-event-container"></div>' +
74                 '<div class="fc-day-number">{0}</div>'+
75                 
76                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
77             '</div></div>', v);
78     
79     }
80     
81     
82     this.colModel = new Roo.grid.ColumnModel( [
83         {
84             xtype: 'ColumnModel',
85             xns: Roo.grid,
86             dataIndex : 'weekday0',
87             header : 'Sunday',
88             renderer : cellRender
89         },
90         {
91             xtype: 'ColumnModel',
92             xns: Roo.grid,
93             dataIndex : 'weekday1',
94             header : 'Monday',
95             renderer : cellRender
96         },
97         {
98             xtype: 'ColumnModel',
99             xns: Roo.grid,
100             dataIndex : 'weekday2',
101             header : 'Tuesday',
102             renderer : cellRender
103         },
104         {
105             xtype: 'ColumnModel',
106             xns: Roo.grid,
107             dataIndex : 'weekday3',
108             header : 'Wednesday',
109             renderer : cellRender
110         },
111         {
112             xtype: 'ColumnModel',
113             xns: Roo.grid,
114             dataIndex : 'weekday4',
115             header : 'Thursday',
116             renderer : cellRender
117         },
118         {
119             xtype: 'ColumnModel',
120             xns: Roo.grid,
121             dataIndex : 'weekday5',
122             header : 'Friday',
123             renderer : cellRender
124         },
125         {
126             xtype: 'ColumnModel',
127             xns: Roo.grid,
128             dataIndex : 'weekday6',
129             header : 'Saturday',
130             renderer : cellRender
131         }
132     ]);
133     this.cm = this.colModel;
134     this.cm.xmodule = this.xmodule || false;
135  
136         
137           
138     //this.selModel = new Roo.grid.CellSelectionModel();
139     //this.sm = this.selModel;
140     //this.selModel.init(this);
141     
142     
143     if(this.width){
144         this.container.setWidth(this.width);
145     }
146
147     if(this.height){
148         this.container.setHeight(this.height);
149     }
150     /** @private */
151         this.addEvents({
152         // raw events
153         /**
154          * @event click
155          * The raw click event for the entire grid.
156          * @param {Roo.EventObject} e
157          */
158         "click" : true,
159         /**
160          * @event dblclick
161          * The raw dblclick event for the entire grid.
162          * @param {Roo.EventObject} e
163          */
164         "dblclick" : true,
165         /**
166          * @event contextmenu
167          * The raw contextmenu event for the entire grid.
168          * @param {Roo.EventObject} e
169          */
170         "contextmenu" : true,
171         /**
172          * @event mousedown
173          * The raw mousedown event for the entire grid.
174          * @param {Roo.EventObject} e
175          */
176         "mousedown" : true,
177         /**
178          * @event mouseup
179          * The raw mouseup event for the entire grid.
180          * @param {Roo.EventObject} e
181          */
182         "mouseup" : true,
183         /**
184          * @event mouseover
185          * The raw mouseover event for the entire grid.
186          * @param {Roo.EventObject} e
187          */
188         "mouseover" : true,
189         /**
190          * @event mouseout
191          * The raw mouseout event for the entire grid.
192          * @param {Roo.EventObject} e
193          */
194         "mouseout" : true,
195         /**
196          * @event keypress
197          * The raw keypress event for the entire grid.
198          * @param {Roo.EventObject} e
199          */
200         "keypress" : true,
201         /**
202          * @event keydown
203          * The raw keydown event for the entire grid.
204          * @param {Roo.EventObject} e
205          */
206         "keydown" : true,
207
208         // custom events
209
210         /**
211          * @event cellclick
212          * Fires when a cell is clicked
213          * @param {Grid} this
214          * @param {Number} rowIndex
215          * @param {Number} columnIndex
216          * @param {Roo.EventObject} e
217          */
218         "cellclick" : true,
219         /**
220          * @event celldblclick
221          * Fires when a cell is double clicked
222          * @param {Grid} this
223          * @param {Number} rowIndex
224          * @param {Number} columnIndex
225          * @param {Roo.EventObject} e
226          */
227         "celldblclick" : true,
228         /**
229          * @event rowclick
230          * Fires when a row is clicked
231          * @param {Grid} this
232          * @param {Number} rowIndex
233          * @param {Roo.EventObject} e
234          */
235         "rowclick" : true,
236         /**
237          * @event rowdblclick
238          * Fires when a row is double clicked
239          * @param {Grid} this
240          * @param {Number} rowIndex
241          * @param {Roo.EventObject} e
242          */
243         "rowdblclick" : true,
244         /**
245          * @event headerclick
246          * Fires when a header is clicked
247          * @param {Grid} this
248          * @param {Number} columnIndex
249          * @param {Roo.EventObject} e
250          */
251         "headerclick" : true,
252         /**
253          * @event headerdblclick
254          * Fires when a header cell is double clicked
255          * @param {Grid} this
256          * @param {Number} columnIndex
257          * @param {Roo.EventObject} e
258          */
259         "headerdblclick" : true,
260         /**
261          * @event rowcontextmenu
262          * Fires when a row is right clicked
263          * @param {Grid} this
264          * @param {Number} rowIndex
265          * @param {Roo.EventObject} e
266          */
267         "rowcontextmenu" : true,
268         /**
269          * @event cellcontextmenu
270          * Fires when a cell is right clicked
271          * @param {Grid} this
272          * @param {Number} rowIndex
273          * @param {Number} cellIndex
274          * @param {Roo.EventObject} e
275          */
276          "cellcontextmenu" : true,
277         /**
278          * @event headercontextmenu
279          * Fires when a header is right clicked
280          * @param {Grid} this
281          * @param {Number} columnIndex
282          * @param {Roo.EventObject} e
283          */
284         "headercontextmenu" : true,
285         /**
286          * @event bodyscroll
287          * Fires when the body element is scrolled
288          * @param {Number} scrollLeft
289          * @param {Number} scrollTop
290          */
291         "bodyscroll" : true,
292         /**
293          * @event columnresize
294          * Fires when the user resizes a column
295          * @param {Number} columnIndex
296          * @param {Number} newSize
297          */
298         "columnresize" : true,
299         /**
300          * @event columnmove
301          * Fires when the user moves a column
302          * @param {Number} oldIndex
303          * @param {Number} newIndex
304          */
305         "columnmove" : true,
306         /**
307          * @event startdrag
308          * Fires when row(s) start being dragged
309          * @param {Grid} this
310          * @param {Roo.GridDD} dd The drag drop object
311          * @param {event} e The raw browser event
312          */
313         "startdrag" : true,
314         /**
315          * @event enddrag
316          * Fires when a drag operation is complete
317          * @param {Grid} this
318          * @param {Roo.GridDD} dd The drag drop object
319          * @param {event} e The raw browser event
320          */
321         "enddrag" : true,
322         /**
323          * @event dragdrop
324          * Fires when dragged row(s) are dropped on a valid DD target
325          * @param {Grid} this
326          * @param {Roo.GridDD} dd The drag drop object
327          * @param {String} targetId The target drag drop object
328          * @param {event} e The raw browser event
329          */
330         "dragdrop" : true,
331         /**
332          * @event dragover
333          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
334          * @param {Grid} this
335          * @param {Roo.GridDD} dd The drag drop object
336          * @param {String} targetId The target drag drop object
337          * @param {event} e The raw browser event
338          */
339         "dragover" : true,
340         /**
341          * @event dragenter
342          *  Fires when the dragged row(s) first cross another DD target while being dragged
343          * @param {Grid} this
344          * @param {Roo.GridDD} dd The drag drop object
345          * @param {String} targetId The target drag drop object
346          * @param {event} e The raw browser event
347          */
348         "dragenter" : true,
349         /**
350          * @event dragout
351          * Fires when the dragged row(s) leave another DD target while being dragged
352          * @param {Grid} this
353          * @param {Roo.GridDD} dd The drag drop object
354          * @param {String} targetId The target drag drop object
355          * @param {event} e The raw browser event
356          */
357         "dragout" : true,
358         /**
359          * @event rowclass
360          * Fires when a row is rendered, so you can change add a style to it.
361          * @param {GridView} gridview   The grid view
362          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
363          */
364         'rowclass' : true,
365
366         /**
367          * @event render
368          * Fires when the grid is rendered
369          * @param {Grid} grid
370          */
371         'render' : true,
372             /**
373              * @event select
374              * Fires when a date is selected
375              * @param {DatePicker} this
376              * @param {Date} date The selected date
377              */
378         'select': true,
379         /**
380              * @event monthchange
381              * Fires when the displayed month changes 
382              * @param {DatePicker} this
383              * @param {Date} date The selected month
384              */
385         'monthchange': true,
386         /**
387              * @event evententer
388              * Fires when mouse over an event
389              * @param {Calendar} this
390              * @param {event} Event
391              */
392         'evententer': true,
393         /**
394              * @event eventleave
395              * Fires when the mouse leaves an
396              * @param {Calendar} this
397              * @param {event}
398              */
399         'eventleave': true,
400         /**
401              * @event eventclick
402              * Fires when the mouse click an
403              * @param {Calendar} this
404              * @param {event}
405              */
406         'eventclick': true,
407         /**
408              * @event eventrender
409              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
410              * @param {Calendar} this
411              * @param {data} data to be modified
412              */
413         'eventrender': true
414         
415     });
416
417     Roo.grid.Grid.superclass.constructor.call(this);
418     this.on('render', function() {
419         this.view.el.addClass('x-grid-cal'); 
420         
421         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
422
423     },this);
424     
425     if (!Roo.grid.Calendar.style) {
426         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
427             
428             
429             '.x-grid-cal .x-grid-col' :  {
430                 height: 'auto !important',
431                 'vertical-align': 'top'
432             },
433             '.x-grid-cal  .fc-event-hori' : {
434                 height: '14px'
435             }
436              
437             
438         }, Roo.id());
439     }
440
441     
442     
443 };
444 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
445     /**
446      * @cfg {Store} eventStore The store that loads events.
447      */
448     eventStore : 25,
449
450      
451     activeDate : false,
452     startDay : 0,
453     autoWidth : true,
454     monitorWindowResize : false,
455
456     
457     resizeColumns : function() {
458         var col = (this.view.el.getWidth() / 7) - 3;
459         // loop through cols, and setWidth
460         for(var i =0 ; i < 7 ; i++){
461             this.cm.setColumnWidth(i, col);
462         }
463     },
464      setDate :function(date) {
465         
466         Roo.log('setDate?');
467         
468         this.resizeColumns();
469         var vd = this.activeDate;
470         this.activeDate = date;
471 //        if(vd && this.el){
472 //            var t = date.getTime();
473 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
474 //                Roo.log('using add remove');
475 //                
476 //                this.fireEvent('monthchange', this, date);
477 //                
478 //                this.cells.removeClass("fc-state-highlight");
479 //                this.cells.each(function(c){
480 //                   if(c.dateValue == t){
481 //                       c.addClass("fc-state-highlight");
482 //                       setTimeout(function(){
483 //                            try{c.dom.firstChild.focus();}catch(e){}
484 //                       }, 50);
485 //                       return false;
486 //                   }
487 //                   return true;
488 //                });
489 //                return;
490 //            }
491 //        }
492         
493         var days = date.getDaysInMonth();
494         
495         var firstOfMonth = date.getFirstDateOfMonth();
496         var startingPos = firstOfMonth.getDay()-this.startDay;
497         
498         if(startingPos < this.startDay){
499             startingPos += 7;
500         }
501         
502         var pm = date.add(Date.MONTH, -1);
503         var prevStart = pm.getDaysInMonth()-startingPos;
504 //        
505         
506         
507         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
508         
509         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
510         //this.cells.addClassOnOver('fc-state-hover');
511         
512         var cells = this.cells.elements;
513         var textEls = this.textNodes;
514         
515         //Roo.each(cells, function(cell){
516         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
517         //});
518         
519         days += startingPos;
520
521         // convert everything to numbers so it's fast
522         var day = 86400000;
523         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
524         //Roo.log(d);
525         //Roo.log(pm);
526         //Roo.log(prevStart);
527         
528         var today = new Date().clearTime().getTime();
529         var sel = date.clearTime().getTime();
530         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
531         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
532         var ddMatch = this.disabledDatesRE;
533         var ddText = this.disabledDatesText;
534         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
535         var ddaysText = this.disabledDaysText;
536         var format = this.format;
537         
538         var setCellClass = function(cal, cell){
539             
540             //Roo.log('set Cell Class');
541             cell.title = "";
542             var t = d.getTime();
543             
544             //Roo.log(d);
545             
546             
547             cell.dateValue = t;
548             if(t == today){
549                 cell.className += " fc-today";
550                 cell.className += " fc-state-highlight";
551                 cell.title = cal.todayText;
552             }
553             if(t == sel){
554                 // disable highlight in other month..
555                 cell.className += " fc-state-highlight";
556                 
557             }
558             // disabling
559             if(t < min) {
560                 //cell.className = " fc-state-disabled";
561                 cell.title = cal.minText;
562                 return;
563             }
564             if(t > max) {
565                 //cell.className = " fc-state-disabled";
566                 cell.title = cal.maxText;
567                 return;
568             }
569             if(ddays){
570                 if(ddays.indexOf(d.getDay()) != -1){
571                     // cell.title = ddaysText;
572                    // cell.className = " fc-state-disabled";
573                 }
574             }
575             if(ddMatch && format){
576                 var fvalue = d.dateFormat(format);
577                 if(ddMatch.test(fvalue)){
578                     cell.title = ddText.replace("%0", fvalue);
579                    cell.className = " fc-state-disabled";
580                 }
581             }
582             
583             if (!cell.initialClassName) {
584                 cell.initialClassName = cell.dom.className;
585             }
586             
587             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
588         };
589
590         var i = 0;
591         
592         for(; i < startingPos; i++) {
593             cells[i].dayName =  (++prevStart);
594             Roo.log(textEls[i]);
595             d.setDate(d.getDate()+1);
596             
597             //cells[i].className = "fc-past fc-other-month";
598             setCellClass(this, cells[i]);
599         }
600         
601         var intDay = 0;
602         
603         for(; i < days; i++){
604             intDay = i - startingPos + 1;
605             cells[i].dayName =  (intDay);
606             d.setDate(d.getDate()+1);
607             
608             cells[i].className = ''; // "x-date-active";
609             setCellClass(this, cells[i]);
610         }
611         var extraDays = 0;
612         
613         for(; i < 42; i++) {
614             //textEls[i].innerHTML = (++extraDays);
615             
616             d.setDate(d.getDate()+1);
617             cells[i].dayName = (++extraDays);
618             cells[i].className = "fc-future fc-other-month";
619             setCellClass(this, cells[i]);
620         }
621         
622         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
623         
624         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
625         
626         // this will cause all the cells to mis
627         var rows= [];
628         var i =0;
629         for (var r = 0;r < 6;r++) {
630             for (var c =0;c < 7;c++) {
631                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
632             }    
633         }
634         
635         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
636         for(i=0;i<cells.length;i++) {
637             
638             this.cells.elements[i].dayName = cells[i].dayName ;
639             this.cells.elements[i].className = cells[i].className;
640             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
641             this.cells.elements[i].title = cells[i].title ;
642             this.cells.elements[i].dateValue = cells[i].dateValue ;
643         }
644         
645         
646         
647         
648         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
649         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
650         
651         ////if(totalRows != 6){
652             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
653            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
654        // }
655         
656         this.fireEvent('monthchange', this, date);
657         
658         
659     },
660  /**
661      * Returns the grid's SelectionModel.
662      * @return {SelectionModel}
663      */
664     getSelectionModel : function(){
665         if(!this.selModel){
666             this.selModel = new Roo.grid.CellSelectionModel();
667         }
668         return this.selModel;
669     },
670
671     load: function() {
672         this.eventStore.load()
673         
674         
675         
676     },
677     
678     findCell : function(dt) {
679         dt = dt.clearTime().getTime();
680         var ret = false;
681         this.cells.each(function(c){
682             //Roo.log("check " +c.dateValue + '?=' + dt);
683             if(c.dateValue == dt){
684                 ret = c;
685                 return false;
686             }
687             return true;
688         });
689         
690         return ret;
691     },
692     
693     findCells : function(rec) {
694         var s = rec.data.start_dt.clone().clearTime().getTime();
695        // Roo.log(s);
696         var e= rec.data.end_dt.clone().clearTime().getTime();
697        // Roo.log(e);
698         var ret = [];
699         this.cells.each(function(c){
700              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
701             
702             if(c.dateValue > e){
703                 return ;
704             }
705             if(c.dateValue < s){
706                 return ;
707             }
708             ret.push(c);
709         });
710         
711         return ret;    
712     },
713     
714     findBestRow: function(cells)
715     {
716         var ret = 0;
717         
718         for (var i =0 ; i < cells.length;i++) {
719             ret  = Math.max(cells[i].rows || 0,ret);
720         }
721         return ret;
722         
723     },
724     
725     
726     addItem : function(rec)
727     {
728         // look for vertical location slot in
729         var cells = this.findCells(rec);
730         
731         rec.row = this.findBestRow(cells);
732         
733         // work out the location.
734         
735         var crow = false;
736         var rows = [];
737         for(var i =0; i < cells.length; i++) {
738             if (!crow) {
739                 crow = {
740                     start : cells[i],
741                     end :  cells[i]
742                 };
743                 continue;
744             }
745             if (crow.start.getY() == cells[i].getY()) {
746                 // on same row.
747                 crow.end = cells[i];
748                 continue;
749             }
750             // different row.
751             rows.push(crow);
752             crow = {
753                 start: cells[i],
754                 end : cells[i]
755             };
756             
757         }
758         
759         rows.push(crow);
760         rec.els = [];
761         rec.rows = rows;
762         rec.cells = cells;
763         for (var i = 0; i < cells.length;i++) {
764             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
765             
766         }
767         
768         
769     },
770     
771     clearEvents: function() {
772         
773         if (!this.eventStore.getCount()) {
774             return;
775         }
776         // reset number of rows in cells.
777         Roo.each(this.cells.elements, function(c){
778             c.rows = 0;
779         });
780         
781         this.eventStore.each(function(e) {
782             Roo.each(e.els, function(el) {
783                 el.un('mouseenter' ,this.onEventEnter, this);
784                 el.un('mouseleave' ,this.onEventLeave, this);
785                 el.remove();
786             },this);
787             e.els = [];
788         },this);
789         
790     },
791     
792     
793     renderEvent : function(args,ctr) {
794         if (!ctr) {
795              ctr = this.view.el.select('.fc-event-container',true).first();
796         }
797         ev.els = [];
798         var cells = ev.cells;
799         var rows = ev.rows;
800         this.fireEvent('eventrender', this, ev);
801         
802         for(var i =0; i < rows.length; i++) {
803             
804             cls = '';
805             if (i == 0) {
806                 cls += ' fc-event-start';
807             }
808             if ((i+1) == rows.length) {
809                 cls += ' fc-event-end';
810             }
811             
812             Roo.log(ev.data);
813             // how many rows should it span..
814             var cg = this.eventTmpl.append(ctr,Roo.apply({
815                 fccls : cls
816                 
817             }, ev.data) , true);
818             
819             
820             cg.on('mouseenter' ,this.onEventEnter, this, ev);
821             cg.on('mouseleave' ,this.onEventLeave, this, ev);
822             cg.on('click', this.onEventClick, this, ev);
823             
824             ev.els.push(cg);
825             
826             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
827             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
828             //Roo.log(cg);
829              
830             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
831             cg.setWidth(ebox.right - sbox.x -2);
832         }
833     }
834     
835     renderEvents: function()
836     {   
837         // first make sure there is enough space..
838         
839         if (!this.eventTmpl) {
840             this.eventTmpl = new Roo.Template(
841                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
842                     '<div class="fc-event-inner">' +
843                         '<span class="fc-event-time">{time}</span>' +
844                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
845                     '</div>' +
846                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
847                 '</div>'
848             );
849                 
850         }
851                
852         
853         
854         this.cells.each(function(c) {
855             Roo.log(c.select('.fc-day-content div',true).first());
856             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
857         });
858         
859         var ctr = this.view.el.select('.fc-event-container',true).first();
860         
861         var cls;
862         this.eventStore.each(function(ev){
863             
864             this.renderEvent(ev);
865              
866             
867             
868         }, this);
869         this.view.layout();
870         
871     },
872     
873     onEventEnter: function (e, el,event,d) {
874         this.fireEvent('evententer', this, el, event);
875     },
876     
877     onEventLeave: function (e, el,event,d) {
878         this.fireEvent('eventleave', this, el, event);
879     },
880     
881     onEventClick: function (e, el,event,d) {
882         this.fireEvent('eventclick', this, el, event);
883     },
884     
885     onMonthChange: function () {
886         this.store.load();
887     },
888     
889     onLoad: function () {
890         
891         //Roo.log('calendar onload');
892 //         
893         if(this.eventStore.getCount() > 0){
894             
895            
896             
897             this.eventStore.each(function(d){
898                 
899                 
900                 // FIXME..
901                 var add =   d.data;
902                 if (typeof(add.end_dt) == 'undefined')  {
903                     Roo.log("Missing End time in calendar data: ");
904                     Roo.log(d);
905                     return;
906                 }
907                 if (typeof(add.start_dt) == 'undefined')  {
908                     Roo.log("Missing Start time in calendar data: ");
909                     Roo.log(d);
910                     return;
911                 }
912                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
913                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
914                 add.id = add.id || d.id;
915                 add.title = add.title || '??';
916                 
917                 this.addItem(d);
918                 
919              
920             },this);
921         }
922         
923         this.renderEvents();
924     }
925     
926
927 });
928 /*
929  grid : {
930                 xtype: 'Grid',
931                 xns: Roo.grid,
932                 listeners : {
933                     render : function ()
934                     {
935                         _this.grid = this;
936                         
937                         if (!this.view.el.hasClass('course-timesheet')) {
938                             this.view.el.addClass('course-timesheet');
939                         }
940                         if (this.tsStyle) {
941                             this.ds.load({});
942                             return; 
943                         }
944                         Roo.log('width');
945                         Roo.log(_this.grid.view.el.getWidth());
946                         
947                         
948                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
949                             '.course-timesheet .x-grid-row' : {
950                                 height: '80px'
951                             },
952                             '.x-grid-row td' : {
953                                 'vertical-align' : 0
954                             },
955                             '.course-edit-link' : {
956                                 'color' : 'blue',
957                                 'text-overflow' : 'ellipsis',
958                                 'overflow' : 'hidden',
959                                 'white-space' : 'nowrap',
960                                 'cursor' : 'pointer'
961                             },
962                             '.sub-link' : {
963                                 'color' : 'green'
964                             },
965                             '.de-act-sup-link' : {
966                                 'color' : 'purple',
967                                 'text-decoration' : 'line-through'
968                             },
969                             '.de-act-link' : {
970                                 'color' : 'red',
971                                 'text-decoration' : 'line-through'
972                             },
973                             '.course-timesheet .course-highlight' : {
974                                 'border-top-style': 'dashed !important',
975                                 'border-bottom-bottom': 'dashed !important'
976                             },
977                             '.course-timesheet .course-item' : {
978                                 'font-family'   : 'tahoma, arial, helvetica',
979                                 'font-size'     : '11px',
980                                 'overflow'      : 'hidden',
981                                 'padding-left'  : '10px',
982                                 'padding-right' : '10px',
983                                 'padding-top' : '10px' 
984                             }
985                             
986                         }, Roo.id());
987                                 this.ds.load({});
988                     }
989                 },
990                 autoWidth : true,
991                 monitorWindowResize : false,
992                 cellrenderer : function(v,x,r)
993                 {
994                     return v;
995                 },
996                 sm : {
997                     xtype: 'CellSelectionModel',
998                     xns: Roo.grid
999                 },
1000                 dataSource : {
1001                     xtype: 'Store',
1002                     xns: Roo.data,
1003                     listeners : {
1004                         beforeload : function (_self, options)
1005                         {
1006                             options.params = options.params || {};
1007                             options.params._month = _this.monthField.getValue();
1008                             options.params.limit = 9999;
1009                             options.params['sort'] = 'when_dt';    
1010                             options.params['dir'] = 'ASC';    
1011                             this.proxy.loadResponse = this.loadResponse;
1012                             Roo.log("load?");
1013                             //this.addColumns();
1014                         },
1015                         load : function (_self, records, options)
1016                         {
1017                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
1018                                 // if you click on the translation.. you can edit it...
1019                                 var el = Roo.get(this);
1020                                 var id = el.dom.getAttribute('data-id');
1021                                 var d = el.dom.getAttribute('data-date');
1022                                 var t = el.dom.getAttribute('data-time');
1023                                 //var id = this.child('span').dom.textContent;
1024                                 
1025                                 //Roo.log(this);
1026                                 Pman.Dialog.CourseCalendar.show({
1027                                     id : id,
1028                                     when_d : d,
1029                                     when_t : t,
1030                                     productitem_active : id ? 1 : 0
1031                                 }, function() {
1032                                     _this.grid.ds.load({});
1033                                 });
1034                            
1035                            });
1036                            
1037                            _this.panel.fireEvent('resize', [ '', '' ]);
1038                         }
1039                     },
1040                     loadResponse : function(o, success, response){
1041                             // this is overridden on before load..
1042                             
1043                             Roo.log("our code?");       
1044                             //Roo.log(success);
1045                             //Roo.log(response)
1046                             delete this.activeRequest;
1047                             if(!success){
1048                                 this.fireEvent("loadexception", this, o, response);
1049                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
1050                                 return;
1051                             }
1052                             var result;
1053                             try {
1054                                 result = o.reader.read(response);
1055                             }catch(e){
1056                                 Roo.log("load exception?");
1057                                 this.fireEvent("loadexception", this, o, response, e);
1058                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
1059                                 return;
1060                             }
1061                             Roo.log("ready...");        
1062                             // loop through result.records;
1063                             // and set this.tdate[date] = [] << array of records..
1064                             _this.tdata  = {};
1065                             Roo.each(result.records, function(r){
1066                                 //Roo.log(r.data);
1067                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
1068                                     _this.tdata[r.data.when_dt.format('j')] = [];
1069                                 }
1070                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
1071                             });
1072                             
1073                             //Roo.log(_this.tdata);
1074                             
1075                             result.records = [];
1076                             result.totalRecords = 6;
1077                     
1078                             // let's generate some duumy records for the rows.
1079                             //var st = _this.dateField.getValue();
1080                             
1081                             // work out monday..
1082                             //st = st.add(Date.DAY, -1 * st.format('w'));
1083                             
1084                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
1085                             
1086                             var firstOfMonth = date.getFirstDayOfMonth();
1087                             var days = date.getDaysInMonth();
1088                             var d = 1;
1089                             var firstAdded = false;
1090                             for (var i = 0; i < result.totalRecords ; i++) {
1091                                 //var d= st.add(Date.DAY, i);
1092                                 var row = {};
1093                                 var added = 0;
1094                                 for(var w = 0 ; w < 7 ; w++){
1095                                     if(!firstAdded && firstOfMonth != w){
1096                                         continue;
1097                                     }
1098                                     if(d > days){
1099                                         continue;
1100                                     }
1101                                     firstAdded = true;
1102                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
1103                                     row['weekday'+w] = String.format(
1104                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
1105                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
1106                                                     d,
1107                                                     date.format('Y-m-')+dd
1108                                                 );
1109                                     added++;
1110                                     if(typeof(_this.tdata[d]) != 'undefined'){
1111                                         Roo.each(_this.tdata[d], function(r){
1112                                             var is_sub = '';
1113                                             var deactive = '';
1114                                             var id = r.id;
1115                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
1116                                             if(r.parent_id*1>0){
1117                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
1118                                                 id = r.parent_id;
1119                                             }
1120                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
1121                                                 deactive = 'de-act-link';
1122                                             }
1123                                             
1124                                             row['weekday'+w] += String.format(
1125                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
1126                                                     id, //0
1127                                                     r.product_id_name, //1
1128                                                     r.when_dt.format('h:ia'), //2
1129                                                     is_sub, //3
1130                                                     deactive, //4
1131                                                     desc // 5
1132                                             );
1133                                         });
1134                                     }
1135                                     d++;
1136                                 }
1137                                 
1138                                 // only do this if something added..
1139                                 if(added > 0){ 
1140                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
1141                                 }
1142                                 
1143                                 
1144                                 // push it twice. (second one with an hour..
1145                                 
1146                             }
1147                             //Roo.log(result);
1148                             this.fireEvent("load", this, o, o.request.arg);
1149                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
1150                         },
1151                     sortInfo : {field: 'when_dt', direction : 'ASC' },
1152                     proxy : {
1153                         xtype: 'HttpProxy',
1154                         xns: Roo.data,
1155                         method : 'GET',
1156                         url : baseURL + '/Roo/Shop_course.php'
1157                     },
1158                     reader : {
1159                         xtype: 'JsonReader',
1160                         xns: Roo.data,
1161                         id : 'id',
1162                         fields : [
1163                             {
1164                                 'name': 'id',
1165                                 'type': 'int'
1166                             },
1167                             {
1168                                 'name': 'when_dt',
1169                                 'type': 'string'
1170                             },
1171                             {
1172                                 'name': 'end_dt',
1173                                 'type': 'string'
1174                             },
1175                             {
1176                                 'name': 'parent_id',
1177                                 'type': 'int'
1178                             },
1179                             {
1180                                 'name': 'product_id',
1181                                 'type': 'int'
1182                             },
1183                             {
1184                                 'name': 'productitem_id',
1185                                 'type': 'int'
1186                             },
1187                             {
1188                                 'name': 'guid',
1189                                 'type': 'int'
1190                             }
1191                         ]
1192                     }
1193                 },
1194                 toolbar : {
1195                     xtype: 'Toolbar',
1196                     xns: Roo,
1197                     items : [
1198                         {
1199                             xtype: 'Button',
1200                             xns: Roo.Toolbar,
1201                             listeners : {
1202                                 click : function (_self, e)
1203                                 {
1204                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
1205                                     sd.setMonth(sd.getMonth()-1);
1206                                     _this.monthField.setValue(sd.format('Y-m-d'));
1207                                     _this.grid.ds.load({});
1208                                 }
1209                             },
1210                             text : "Back"
1211                         },
1212                         {
1213                             xtype: 'Separator',
1214                             xns: Roo.Toolbar
1215                         },
1216                         {
1217                             xtype: 'MonthField',
1218                             xns: Roo.form,
1219                             listeners : {
1220                                 render : function (_self)
1221                                 {
1222                                     _this.monthField = _self;
1223                                    // _this.monthField.set  today
1224                                 },
1225                                 select : function (combo, date)
1226                                 {
1227                                     _this.grid.ds.load({});
1228                                 }
1229                             },
1230                             value : (function() { return new Date(); })()
1231                         },
1232                         {
1233                             xtype: 'Separator',
1234                             xns: Roo.Toolbar
1235                         },
1236                         {
1237                             xtype: 'TextItem',
1238                             xns: Roo.Toolbar,
1239                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
1240                         },
1241                         {
1242                             xtype: 'Fill',
1243                             xns: Roo.Toolbar
1244                         },
1245                         {
1246                             xtype: 'Button',
1247                             xns: Roo.Toolbar,
1248                             listeners : {
1249                                 click : function (_self, e)
1250                                 {
1251                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
1252                                     sd.setMonth(sd.getMonth()+1);
1253                                     _this.monthField.setValue(sd.format('Y-m-d'));
1254                                     _this.grid.ds.load({});
1255                                 }
1256                             },
1257                             text : "Next"
1258                         }
1259                     ]
1260                 },
1261                  
1262             }
1263         };
1264         
1265         */