0
我正在開發應用程序ExtJs 4 我正在使用MVC架構。 在Extjs的本地示例中,有可擴展日曆的日曆。 我想在我的應用程序中使用這個例子,而不是MVC它運作良好, 如何在我的應用程序中使用這個例子? 請幫幫我! 這是我的看法Extjs calendarpanel
Ext.define('Module.notification.reminder.view.Calendar', {
extend: 'Ext.panel.Panel',
alias: 'widget.calendartry',
requires: [
'Ext.Viewport',
'Ext.layout.container.Border',
'Ext.data.proxy.Rest',
'Ext.picker.Date',
'Ext.calendar.util.Date',
'Ext.calendar.CalendarPanel',
'Ext.calendar.data.MemoryCalendarStore',
'Ext.calendar.data.MemoryEventStore',
'Ext.calendar.data.Events',
'Ext.calendar.data.Calendars',
'Ext.calendar.form.EventWindow'
],
autoShow: false,
layout: 'fit',
Store: ['Ext.calendar.data.Events'],
initComponent: function() {
this.items = [{
xtype: 'calendarpanel',
eventStore: Ext.create('Ext.data.ArrayStore', {}),
calendarStore: Ext.create('Ext.data.ArrayStore', {}),
title: 'Calendar',
name: 'eLeave-calendar',
height: 500,
width: 500
}];
Ext.calendar.data.CalendarModel.reconfigure();
this.callParent(arguments);
}
});
目前還不清楚你問什麼「內的DateField」。你試過了什麼,它會導致哪種錯誤行爲? –
我想在MVC中實現可擴展日曆 – Faradox
我得到一個錯誤'''TypeError:b.getSelectionModel不是一個函數''' – Faradox