dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
16 lines (15 loc) • 461 B
JavaScript
define([
"dojo/_base/declare",
"./_CalendarMonthYearView"
], function(declare, _CalendarMonthYearView){
return declare("dojox.widget._CalendarMonthYear", null, {
// summary:
// Mixin class for adding a view listing all 12
// months of the year to the dojox/widget/_CalendarBase
constructor: function(){
// summary:
// Adds a dojox/widget/_CalendarMonthView view to the calendar widget.
this._addView(_CalendarMonthYearView);
}
});
});