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