Extjs可扩展日历数据[M.EndDate.name]未定义

时间:2014-03-26 17:58:54

标签: javascript extjs calendar extensible

我正在使用可扩展日历并尝试使用自定义ajax存储,但是当存储加载时我收到此错误 enter image description here

所以日历不会显示日期,这里有一些代码

Ext.apply(Extensible.calendar.data.EventMappings, {

        StartDate:   {name: 'fecha_reservacion', mapping: 'fecha_reservacion', type: 'date', dateFormat: 'c'},

    });
 Extensible.calendar.data.EventModel.reconfigure();

var eventStore = Ext.create('Ext.data.Store', {

        fields: [
            {name: 'id', type: 'int'},
            {name: 'fecha_reservacion', type: 'date', dateFormat: 'c'},
        ],
        proxy: {
            type: 'ajax',
            url: '/reservacion/get',
            reader: {
                type: 'json'

            }
        },
        autoLoad: true
});

Ext.create('Extensible.calendar.CalendarPanel', {
        eventStore: eventStore,
        calendarStore: calendarStore,
        renderTo: 'content',
        title: 'Custom Event Mappings',
        width: 800,
        height: 700,
    });

1 个答案:

答案 0 :(得分:0)

您的地图错误name: 'fecha_reservacion'应为name: 'StartDate'

Ext.apply(Extensible.calendar.data.EventMappings, {
    StartDate:   {name: 'fecha_reservacion', mapping: 'fecha_reservacion', type: 'date', dateFormat: 'c'},
    // add here all your fields 
});

并且您还必须为其他字段添加映射。