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.
17 lines (15 loc) • 446 B
JavaScript
define([
"dojo/_base/declare",
"./_CalendarMonthView"
], function(declare, _CalendarMonthView){
return declare("dojox.widget._CalendarMonth", 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(_CalendarMonthView);
}
});
});