X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/b37ceabb82336ee82757cd32efe353cfab8ec267..f5240829880f87e0cf581c6a296e436fdef0ef80:/examples/docs/output/Ext.calendar.EventRecord.html diff --git a/examples/docs/output/Ext.calendar.EventRecord.html b/examples/docs/output/Ext.calendar.EventRecord.html new file mode 100644 index 00000000..2bbdb553 --- /dev/null +++ b/examples/docs/output/Ext.calendar.EventRecord.html @@ -0,0 +1,30 @@ +
Properties Methods Events Direct Link

Class Ext.calendar.EventRecord

Package:Ext.calendar
Defined In:EventRecord.js
Class:EventRecord
Extends:Object

This is the Record specification for calendar event data used by the +CalendarPanel's underlying store. It can be overridden as +necessary to customize the fields supported by events, although the existing column names should +not be altered. If your model fields are named differently you should update the mapping +configs accordingly.

+

The only required fields when creating a new event record instance are StartDate and +EndDate. All other fields are either optional are will be defaulted if blank.

+

Here is a basic example for how to create a new record of this type:

rec = new Ext.calendar.EventRecord({
+    StartDate: '2101-01-12 12:00:00',
+    EndDate: '2101-01-12 13:30:00',
+    Title: 'My cool event',
+    Notes: 'Some notes'
+});
+If you have overridden any of the record's data mappings via the Ext.calendar.EventMappings object +you may need to set the values using this alternate syntax to ensure that the fields match up correctly:
var M = Ext.calendar.EventMappings;
+
+rec = new Ext.calendar.EventRecord();
+rec.data[M.StartDate.name] = '2101-01-12 12:00:00';
+rec.data[M.EndDate.name] = '2101-01-12 13:30:00';
+rec.data[M.Title.name] = 'My cool event';
+rec.data[M.Notes.name] = 'Some notes';

Public Properties

This class has no public properties.

Public Methods

MethodDefined By

Public Events

This class has no public events.
\ No newline at end of file