我想在日历中添加2周视图,但是我没有做到这一点。到目前为止,我的代码未显示日历,提示以下错误:
未捕获的TypeError:view.getView不是一个函数 在builder.recalculate(Multi.js?_dc = 20180710185310:227)...
{
[...]
day: {
addForm: null,
editForm: null,
listeners: {
eventtap: 'onEventClick',
//click: 'onDayClick'
}
},
week: {
xtype: 'calendar-week'// This shows the one week view
},
weeks:{
xtype: 'calendar-weeksview'// but this give error
}
},
bind: {
store: '{calendars}'
}
答案 0 :(得分:0)
您始终必须小心使用下面的两个组件-像网格一样,它们是由一个面板和一个视图组成的。
xtype: 'calendar-weeksview'
与xtype: 'calendar-week'
不在同一文件夹中,而xtype: 'calendar-weeks'
在同一文件夹中。您可能要尝试一下。