1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| //@define Ext.calendar.data.CalendarMappings
| /**
| * @class Ext.calendar.data.CalendarMappings
| * @extends Object
| * A simple object that provides the field definitions for Calendar records so that they can be easily overridden.
| */
| Ext.ns('Ext.calendar.data');
|
| Ext.calendar.data.CalendarMappings = {
| CalendarId: {
| name: 'CalendarId',
| mapping: 'id',
| type: 'int'
| },
| Title: {
| name: 'Title',
| mapping: 'title',
| type: 'string'
| },
| Description: {
| name: 'Description',
| mapping: 'desc',
| type: 'string'
| },
| ColorId: {
| name: 'ColorId',
| mapping: 'color',
| type: 'int'
| },
| IsHidden: {
| name: 'IsHidden',
| mapping: 'hidden',
| type: 'boolean'
| }
| };
|
|