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     
794     
795     renderEvents: function()
796     {   
797         // first make sure there is enough space..
798         
799         if (!this.eventTmpl) {
800             this.eventTmpl = new Roo.Template(
801                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
802                     '<div class="fc-event-inner">' +
803                         '<span class="fc-event-time">{time}</span>', +
804                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>', +
805                     '</div>' +
806                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
807                 '</div>'
808             );
809                 
810         }
811                
812         
813         
814         this.cells.each(function(c) {
815             Roo.log(c.select('.fc-day-content div',true).first());
816             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
817         });
818         
819         var ctr = this.view.el.select('.fc-event-container',true).first();
820         
821         var cls;
822         this.eventStore.each(function(ev){
823             
824             ev.els = [];
825             var cells = ev.cells;
826             var rows = ev.rows;
827             this.fireEvent('eventrender', this, ev);
828             
829             for(var i =0; i < rows.length; i++) {
830                 
831                 cls = '';
832                 if (i == 0) {
833                     cls += ' fc-event-start';
834                 }
835                 if ((i+1) == rows.length) {
836                     cls += ' fc-event-end';
837                 }
838                 
839                 Roo.log(ev.data);
840                 // how many rows should it span..
841                 var cg = this.eventTmpl.append(ctr,Roo.apply({
842                     fccls : cls
843                     
844                 }, ev.data) , true);
845                 
846                 
847                 cg.on('mouseenter' ,this.onEventEnter, this, ev);
848                 cg.on('mouseleave' ,this.onEventLeave, this, ev);
849                 cg.on('click', this.onEventClick, this, ev);
850                 
851                 ev.els.push(cg);
852                 
853                 var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
854                 var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
855                 //Roo.log(cg);
856                  
857                 cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
858                 cg.setWidth(ebox.right - sbox.x -2);
859             }
860             
861             
862         }, this);
863         this.view.layout();
864         
865     },
866     
867     onEventEnter: function (e, el,event,d) {
868         this.fireEvent('evententer', this, el, event);
869     },
870     
871     onEventLeave: function (e, el,event,d) {
872         this.fireEvent('eventleave', this, el, event);
873     },
874     
875     onEventClick: function (e, el,event,d) {
876         this.fireEvent('eventclick', this, el, event);
877     },
878     
879     onMonthChange: function () {
880         this.store.load();
881     },
882     
883     onLoad: function () {
884         
885         //Roo.log('calendar onload');
886 //         
887         if(this.eventStore.getCount() > 0){
888             
889            
890             
891             this.eventStore.each(function(d){
892                 
893                 
894                 // FIXME..
895                 var add =   d.data;
896                 if (typeof(add.end_dt) == 'undefined')  {
897                     Roo.log("Missing End time in calendar data: ");
898                     Roo.log(d);
899                     return;
900                 }
901                 if (typeof(add.start_dt) == 'undefined')  {
902                     Roo.log("Missing Start time in calendar data: ");
903                     Roo.log(d);
904                     return;
905                 }
906                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
907                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
908                 add.id = add.id || d.id;
909                 add.title = add.title || '??';
910                 
911                 this.addItem(d);
912                 
913              
914             },this);
915         }
916         
917         this.renderEvents();
918     }
919     
920
921 });
922 /*
923  grid : {
924                 xtype: 'Grid',
925                 xns: Roo.grid,
926                 listeners : {
927                     render : function ()
928                     {
929                         _this.grid = this;
930                         
931                         if (!this.view.el.hasClass('course-timesheet')) {
932                             this.view.el.addClass('course-timesheet');
933                         }
934                         if (this.tsStyle) {
935                             this.ds.load({});
936                             return; 
937                         }
938                         Roo.log('width');
939                         Roo.log(_this.grid.view.el.getWidth());
940                         
941                         
942                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
943                             '.course-timesheet .x-grid-row' : {
944                                 height: '80px'
945                             },
946                             '.x-grid-row td' : {
947                                 'vertical-align' : 0
948                             },
949                             '.course-edit-link' : {
950                                 'color' : 'blue',
951                                 'text-overflow' : 'ellipsis',
952                                 'overflow' : 'hidden',
953                                 'white-space' : 'nowrap',
954                                 'cursor' : 'pointer'
955                             },
956                             '.sub-link' : {
957                                 'color' : 'green'
958                             },
959                             '.de-act-sup-link' : {
960                                 'color' : 'purple',
961                                 'text-decoration' : 'line-through'
962                             },
963                             '.de-act-link' : {
964                                 'color' : 'red',
965                                 'text-decoration' : 'line-through'
966                             },
967                             '.course-timesheet .course-highlight' : {
968                                 'border-top-style': 'dashed !important',
969                                 'border-bottom-bottom': 'dashed !important'
970                             },
971                             '.course-timesheet .course-item' : {
972                                 'font-family'   : 'tahoma, arial, helvetica',
973                                 'font-size'     : '11px',
974                                 'overflow'      : 'hidden',
975                                 'padding-left'  : '10px',
976                                 'padding-right' : '10px',
977                                 'padding-top' : '10px' 
978                             }
979                             
980                         }, Roo.id());
981                                 this.ds.load({});
982                     }
983                 },
984                 autoWidth : true,
985                 monitorWindowResize : false,
986                 cellrenderer : function(v,x,r)
987                 {
988                     return v;
989                 },
990                 sm : {
991                     xtype: 'CellSelectionModel',
992                     xns: Roo.grid
993                 },
994                 dataSource : {
995                     xtype: 'Store',
996                     xns: Roo.data,
997                     listeners : {
998                         beforeload : function (_self, options)
999                         {
1000                             options.params = options.params || {};
1001                             options.params._month = _this.monthField.getValue();
1002                             options.params.limit = 9999;
1003                             options.params['sort'] = 'when_dt';    
1004                             options.params['dir'] = 'ASC';    
1005                             this.proxy.loadResponse = this.loadResponse;
1006                             Roo.log("load?");
1007                             //this.addColumns();
1008                         },
1009                         load : function (_self, records, options)
1010                         {
1011                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
1012                                 // if you click on the translation.. you can edit it...
1013                                 var el = Roo.get(this);
1014                                 var id = el.dom.getAttribute('data-id');
1015                                 var d = el.dom.getAttribute('data-date');
1016                                 var t = el.dom.getAttribute('data-time');
1017                                 //var id = this.child('span').dom.textContent;
1018                                 
1019                                 //Roo.log(this);
1020                                 Pman.Dialog.CourseCalendar.show({
1021                                     id : id,
1022                                     when_d : d,
1023                                     when_t : t,
1024                                     productitem_active : id ? 1 : 0
1025                                 }, function() {
1026                                     _this.grid.ds.load({});
1027                                 });
1028                            
1029                            });
1030                            
1031                            _this.panel.fireEvent('resize', [ '', '' ]);
1032                         }
1033                     },
1034                     loadResponse : function(o, success, response){
1035                             // this is overridden on before load..
1036                             
1037                             Roo.log("our code?");       
1038                             //Roo.log(success);
1039                             //Roo.log(response)
1040                             delete this.activeRequest;
1041                             if(!success){
1042                                 this.fireEvent("loadexception", this, o, response);
1043                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
1044                                 return;
1045                             }
1046                             var result;
1047                             try {
1048                                 result = o.reader.read(response);
1049                             }catch(e){
1050                                 Roo.log("load exception?");
1051                                 this.fireEvent("loadexception", this, o, response, e);
1052                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
1053                                 return;
1054                             }
1055                             Roo.log("ready...");        
1056                             // loop through result.records;
1057                             // and set this.tdate[date] = [] << array of records..
1058                             _this.tdata  = {};
1059                             Roo.each(result.records, function(r){
1060                                 //Roo.log(r.data);
1061                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
1062                                     _this.tdata[r.data.when_dt.format('j')] = [];
1063                                 }
1064                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
1065                             });
1066                             
1067                             //Roo.log(_this.tdata);
1068                             
1069                             result.records = [];
1070                             result.totalRecords = 6;
1071                     
1072                             // let's generate some duumy records for the rows.
1073                             //var st = _this.dateField.getValue();
1074                             
1075                             // work out monday..
1076                             //st = st.add(Date.DAY, -1 * st.format('w'));
1077                             
1078                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
1079                             
1080                             var firstOfMonth = date.getFirstDayOfMonth();
1081                             var days = date.getDaysInMonth();
1082                             var d = 1;
1083                             var firstAdded = false;
1084                             for (var i = 0; i < result.totalRecords ; i++) {
1085                                 //var d= st.add(Date.DAY, i);
1086                                 var row = {};
1087                                 var added = 0;
1088                                 for(var w = 0 ; w < 7 ; w++){
1089                                     if(!firstAdded && firstOfMonth != w){
1090                                         continue;
1091                                     }
1092                                     if(d > days){
1093                                         continue;
1094                                     }
1095                                     firstAdded = true;
1096                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
1097                                     row['weekday'+w] = String.format(
1098                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
1099                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
1100                                                     d,
1101                                                     date.format('Y-m-')+dd
1102                                                 );
1103                                     added++;
1104                                     if(typeof(_this.tdata[d]) != 'undefined'){
1105                                         Roo.each(_this.tdata[d], function(r){
1106                                             var is_sub = '';
1107                                             var deactive = '';
1108                                             var id = r.id;
1109                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
1110                                             if(r.parent_id*1>0){
1111                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
1112                                                 id = r.parent_id;
1113                                             }
1114                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
1115                                                 deactive = 'de-act-link';
1116                                             }
1117                                             
1118                                             row['weekday'+w] += String.format(
1119                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
1120                                                     id, //0
1121                                                     r.product_id_name, //1
1122                                                     r.when_dt.format('h:ia'), //2
1123                                                     is_sub, //3
1124                                                     deactive, //4
1125                                                     desc // 5
1126                                             );
1127                                         });
1128                                     }
1129                                     d++;
1130                                 }
1131                                 
1132                                 // only do this if something added..
1133                                 if(added > 0){ 
1134                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
1135                                 }
1136                                 
1137                                 
1138                                 // push it twice. (second one with an hour..
1139                                 
1140                             }
1141                             //Roo.log(result);
1142                             this.fireEvent("load", this, o, o.request.arg);
1143                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
1144                         },
1145                     sortInfo : {field: 'when_dt', direction : 'ASC' },
1146                     proxy : {
1147                         xtype: 'HttpProxy',
1148                         xns: Roo.data,
1149                         method : 'GET',
1150                         url : baseURL + '/Roo/Shop_course.php'
1151                     },
1152                     reader : {
1153                         xtype: 'JsonReader',
1154                         xns: Roo.data,
1155                         id : 'id',
1156                         fields : [
1157                             {
1158                                 'name': 'id',
1159                                 'type': 'int'
1160                             },
1161                             {
1162                                 'name': 'when_dt',
1163                                 'type': 'string'
1164                             },
1165                             {
1166                                 'name': 'end_dt',
1167                                 'type': 'string'
1168                             },
1169                             {
1170                                 'name': 'parent_id',
1171                                 'type': 'int'
1172                             },
1173                             {
1174                                 'name': 'product_id',
1175                                 'type': 'int'
1176                             },
1177                             {
1178                                 'name': 'productitem_id',
1179                                 'type': 'int'
1180                             },
1181                             {
1182                                 'name': 'guid',
1183                                 'type': 'int'
1184                             }
1185                         ]
1186                     }
1187                 },
1188                 toolbar : {
1189                     xtype: 'Toolbar',
1190                     xns: Roo,
1191                     items : [
1192                         {
1193                             xtype: 'Button',
1194                             xns: Roo.Toolbar,
1195                             listeners : {
1196                                 click : function (_self, e)
1197                                 {
1198                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
1199                                     sd.setMonth(sd.getMonth()-1);
1200                                     _this.monthField.setValue(sd.format('Y-m-d'));
1201                                     _this.grid.ds.load({});
1202                                 }
1203                             },
1204                             text : "Back"
1205                         },
1206                         {
1207                             xtype: 'Separator',
1208                             xns: Roo.Toolbar
1209                         },
1210                         {
1211                             xtype: 'MonthField',
1212                             xns: Roo.form,
1213                             listeners : {
1214                                 render : function (_self)
1215                                 {
1216                                     _this.monthField = _self;
1217                                    // _this.monthField.set  today
1218                                 },
1219                                 select : function (combo, date)
1220                                 {
1221                                     _this.grid.ds.load({});
1222                                 }
1223                             },
1224                             value : (function() { return new Date(); })()
1225                         },
1226                         {
1227                             xtype: 'Separator',
1228                             xns: Roo.Toolbar
1229                         },
1230                         {
1231                             xtype: 'TextItem',
1232                             xns: Roo.Toolbar,
1233                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
1234                         },
1235                         {
1236                             xtype: 'Fill',
1237                             xns: Roo.Toolbar
1238                         },
1239                         {
1240                             xtype: 'Button',
1241                             xns: Roo.Toolbar,
1242                             listeners : {
1243                                 click : function (_self, e)
1244                                 {
1245                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
1246                                     sd.setMonth(sd.getMonth()+1);
1247                                     _this.monthField.setValue(sd.format('Y-m-d'));
1248                                     _this.grid.ds.load({});
1249                                 }
1250                             },
1251                             text : "Next"
1252                         }
1253                     ]
1254                 },
1255                  
1256             }
1257         };
1258         
1259         */