我正在测试Extjs演示。 http://ext.ensible.com/deploy/dev/examples/calendar/remote.html
如何在该演示中显示2周作为默认值而不是月份?
谢谢。
答案 0 :(得分:1)
您应该可以在showMultiWeekView
中将true
配置选项设置为CalendarPanel
。您可以选择指定multiWeekViewCfg
来定义要显示的周数,但默认情况下会使用两周的时间。
例如:
var cp = new Ext.ensible.cal.CalendarPanel({
//other properties...
showMultiWeekView: true,
multiWeekViewCfg: { //not necessary, but included for reference.
weekCount: 2
}
});
{p} Take a look at the documentation CalendarPanel
。