Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F1042238
CalendarViews.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Subscribers
None
CalendarViews.js
View Options
/*
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if
(
!
dojo
.
_hasResource
[
"dojox.widget.CalendarViews"
]){
dojo
.
_hasResource
[
"dojox.widget.CalendarViews"
]
=
true
;
dojo
.
provide
(
"dojox.widget.CalendarViews"
);
dojo
.
experimental
(
"dojox.widget.CalendarViews"
);
dojo
.
require
(
"dojox.widget.Calendar"
);
dojo
.
declare
(
"dojox.widget._CalendarMonth"
,
null
,{
constructor
:
function
(){
this
.
_addView
(
dojox
.
widget
.
_CalendarMonthView
);
}});
dojo
.
declare
(
"dojox.widget._CalendarMonthView"
,[
dojox
.
widget
.
_CalendarView
,
dijit
.
_Templated
],{
templateString
:
dojo
.
cache
(
"dojox.widget"
,
"Calendar/CalendarMonth.html"
,
"<div class=\"dojoxCalendarMonthLabels\" style=\"left: 0px;\" \n\tdojoAttachPoint=\"monthContainer\" dojoAttachEvent=\"onclick: onClick\">\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"margin: auto;\">\n <tbody>\n <tr class=\"dojoxCalendarMonthGroupTemplate\">\n <td class=\"dojoxCalendarMonthTemplate\">\n <div class=\"dojoxCalendarMonthLabel\"></div>\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n"
),
datePart
:
"year"
,
headerClass
:
"dojoxCalendarMonthHeader"
,
postCreate
:
function
(){
this
.
cloneClass
(
".dojoxCalendarMonthTemplate"
,
3
);
this
.
cloneClass
(
".dojoxCalendarMonthGroupTemplate"
,
2
);
this
.
_populateMonths
();
this
.
addFx
(
".dojoxCalendarMonthLabel"
,
this
.
domNode
);
},
_setValueAttr
:
function
(
_1
){
this
.
header
.
innerHTML
=
_1
.
getFullYear
();
},
_getMonthNames
:
dojox
.
widget
.
_CalendarMonthYearView
.
prototype
.
_getMonthNames
,
_populateMonths
:
dojox
.
widget
.
_CalendarMonthYearView
.
prototype
.
_populateMonths
,
onClick
:
function
(
_2
){
if
(
!
dojo
.
hasClass
(
_2
.
target
,
"dojoxCalendarMonthLabel"
)){
dojo
.
stopEvent
(
_2
);
return
;
}
var
_3
=
_2
.
target
.
parentNode
.
cellIndex
+
(
_2
.
target
.
parentNode
.
parentNode
.
rowIndex
*
4
);
var
_4
=
this
.
attr
(
"value"
);
_4
.
setMonth
(
_3
);
this
.
onValueSelected
(
_4
,
_3
);
}});
dojo
.
declare
(
"dojox.widget._CalendarYear"
,
null
,{
parent
:
null
,
constructor
:
function
(){
this
.
_addView
(
dojox
.
widget
.
_CalendarYearView
);
}});
dojo
.
declare
(
"dojox.widget._CalendarYearView"
,[
dojox
.
widget
.
_CalendarView
,
dijit
.
_Templated
],{
templateString
:
dojo
.
cache
(
"dojox.widget"
,
"Calendar/CalendarYear.html"
,
"<div class=\"dojoxCalendarYearLabels\" style=\"left: 0px;\" dojoAttachPoint=\"yearContainer\">\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"margin: auto;\" dojoAttachEvent=\"onclick: onClick\">\n <tbody>\n <tr class=\"dojoxCalendarYearGroupTemplate\">\n <td class=\"dojoxCalendarNextMonth dojoxCalendarYearTemplate\">\n <div class=\"dojoxCalendarYearLabel\">\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n</div>\n"
),
displayedYears
:
6
,
postCreate
:
function
(){
this
.
cloneClass
(
".dojoxCalendarYearTemplate"
,
3
);
this
.
cloneClass
(
".dojoxCalendarYearGroupTemplate"
,
2
);
this
.
_populateYears
();
this
.
addFx
(
".dojoxCalendarYearLabel"
,
this
.
domNode
);
},
_setValueAttr
:
function
(
_5
){
this
.
_populateYears
(
_5
.
getFullYear
());
},
_populateYears
:
dojox
.
widget
.
_CalendarMonthYearView
.
prototype
.
_populateYears
,
adjustDate
:
function
(
_6
,
_7
){
return
dojo
.
date
.
add
(
_6
,
"year"
,
_7
*
12
);
},
onClick
:
function
(
_8
){
if
(
!
dojo
.
hasClass
(
_8
.
target
,
"dojoxCalendarYearLabel"
)){
dojo
.
stopEvent
(
_8
);
return
;
}
var
_9
=
Number
(
_8
.
target
.
innerHTML
);
var
_a
=
this
.
attr
(
"value"
);
_a
.
setYear
(
_9
);
this
.
onValueSelected
(
_a
,
_9
);
}});
dojo
.
declare
(
"dojox.widget.Calendar3Pane"
,[
dojox
.
widget
.
_CalendarBase
,
dojox
.
widget
.
_CalendarDay
,
dojox
.
widget
.
_CalendarMonth
,
dojox
.
widget
.
_CalendarYear
],{});
dojo
.
declare
(
"dojox.widget.MonthlyCalendar"
,[
dojox
.
widget
.
_CalendarBase
,
dojox
.
widget
.
_CalendarMonth
],{});
dojo
.
declare
(
"dojox.widget.YearlyCalendar"
,[
dojox
.
widget
.
_CalendarBase
,
dojox
.
widget
.
_CalendarYear
],{});
}
File Metadata
Details
Attached
Mime Type
text/html
Expires
Thu, May 15, 13:17 (2 d, 19 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26337
Default Alt Text
CalendarViews.js (3 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment