我正在使用Extjs演示進行測試。 http://ext.ensible.com/deploy/dev/examples/calendar/remote.htmlextjs:默認顯示2周
我該如何在默認情況下顯示2周而不是月?
謝謝。
我正在使用Extjs演示進行測試。 http://ext.ensible.com/deploy/dev/examples/calendar/remote.htmlextjs:默認顯示2周
我該如何在默認情況下顯示2周而不是月?
謝謝。
您應該能夠在CalendarPanel
中將showMultiWeekView
配置選項設置爲true
。您可以選擇指定multiWeekViewCfg
來定義要顯示的週數,但默認情況下它會使用兩週時間。
例如:
var cp = new Ext.ensible.cal.CalendarPanel({
//other properties...
showMultiWeekView: true,
multiWeekViewCfg: { //not necessary, but included for reference.
weekCount: 2
}
});
Take a look at the documentation爲CalendarPanel
。
你真的應該接受你的問題的一些答案。 – 2011-03-21 18:44:30