世界!
我正在尝试创建一个日期选择器小部件,它首先显示年份,然后是月份,然后是日期。从我在网上找到的示例(http://dojotoolkit.org/reference-guide/1.7/dojox/widget/Calendar.html)看来,这是可能的。我只需要知道它应该如何与AMD兼容?我试过这样的事情:
定义(['dojo/_base/declare','dojox/widget/_CalendarBase','dojox/widget/_CalendarDay','dojox/widget/_CalendarYear'],函数(声明,calendarBase,calendarDay,calendarYear){声明(' lt.CustomSerialCalendar', [calendarBase, calendarDay, calendarYear], {}); });
但是我尝试过的任何方法似乎都不起作用。我尝试放入dojox/widget/Calendar
依赖项列表,但出现dojo not defined
错误。我该怎么做?