forked from damiengarbarino/dojo-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMobileCalendar.js
58 lines (44 loc) · 2.31 KB
/
MobileCalendar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
define(["dojo/_base/declare", "dojo/_base/lang", "./CalendarBase", "./ColumnView", "./ColumnViewSecondarySheet",
"./MobileVerticalRenderer", "./MatrixView", "./MobileHorizontalRenderer", "./LabelRenderer",
"./ExpandRenderer", "./Touch", "dojo/text!./templates/MobileCalendar.html", "dojox/mobile/Button"],
function(declare, lang, CalendarBase, ColumnView, ColumnViewSecondarySheet, VerticalRenderer,
MatrixView, HorizontalRenderer, LabelRenderer, ExpandRenderer, Touch, template){
return declare("dojox.calendar.MobileCalendar", CalendarBase, {
// summary:
// This class defines a calendar widget that display events in time designed to be used in mobile environment.
templateString: template,
_createDefaultViews: function(){
// summary:
// Creates the default views:
// - A dojox.calendar.ColumnView instance used to display one day to seven days time intervals,
// - A dojox.calendar.MatrixView instance used to display the other time intervals.
// The views are mixed with Mouse and Keyboard to allow editing items using mouse and keyboard.
var secondarySheetClass = declare([ColumnViewSecondarySheet, Touch]);
var colView = declare([ColumnView, Touch])(lang.mixin({
secondarySheetClass: secondarySheetClass,
verticalRenderer: VerticalRenderer,
horizontalRenderer: HorizontalRenderer,
expandRenderer: ExpandRenderer
}, this.columnViewProps));
var matrixView = declare([MatrixView, Touch])(lang.mixin({
horizontalRenderer: HorizontalRenderer,
labelRenderer: LabelRenderer,
expandRenderer: ExpandRenderer
}, this.matrixViewProps));
this.columnView = colView;
this.matrixView = matrixView;
var views = [colView, matrixView];
this.installDefaultViewsActions(views);
return views;
},
installDefaultViewsActions: function(views){
// summary:
// Installs the default actions on newly created default views.
// By default this action is registering:
// - the matrixViewRowHeaderClick method on the rowHeaderClick event of the matrix view.
// - the columnViewColumnHeaderClick method on the columnHeaderClick event of the column view.
this.matrixView.on("rowHeaderClick", lang.hitch(this, this.matrixViewRowHeaderClick));
this.columnView.on("columnHeaderClick", lang.hitch(this, this.columnViewColumnHeaderClick));
}
});
});