2011-03-21 3 views

답변

1

CalendarPanel에서 구성 옵션을 true으로 설정할 수 있습니다. 선택적으로 multiWeekViewCfg을 지정하여 표시 할 주 수를 정의 할 수 있지만 기본적으로 2 주를 사용합니다. 예를 들어

다음 CalendarPanel위한

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.

+0

그것은 작동합니다. 고마워요 ^^ – MartinJoo

+0

그것이 효과가 있다면 받아 들일 수있는 것으로 표시하십시오. – NT3RP

관련 문제