source:
Dev/trunk/src/client/dojox/widget/MonthlyCalendar.js
Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago | |
---|---|
File size: 370 bytes |
Rev | Line | |
---|---|---|
[483] | 1 | define([ |
2 | "dojo/_base/declare", | |
3 | "./_CalendarBase", | |
4 | "./_CalendarMonth" | |
5 | ], function(declare, _CalendarBase, _CalendarMonth){ | |
6 | return declare("dojox.widget.MonthlyCalendar", [_CalendarBase, _CalendarMonth], { | |
7 | // summary: | |
8 | // A calendar with only a month view. | |
9 | _makeDate: function(value){ | |
10 | var now = new Date(); | |
11 | now.setMonth(value); | |
12 | return now; | |
13 | } | |
14 | }); | |
15 | }); |
Note: See TracBrowser
for help on using the repository browser.