Titanium.Calendar.Event
An object that represents a single event in a calendar.
The API supports retrieving information about existing events and creating new events. On iOS, existing events can be modified or deleted. On Android, only recurrence rules can be modified.
See Titanium.Calendar for examples of retrieving event information and creating events.
Extends: Titanium.Proxy · Since: 3.2.0, 3.1.0, 3.1.0 · Platforms: android, iphone, ipad, macos
Properties #
alerts#
Type: Array<Titanium.Calendar.Alert>
Alarms associated with the calendar item, as an array of Titanium.Calendar.Alert objects.
This property is read-only on Android.
apiName#
Type: String
The name of the API that this proxy corresponds to.
The value of this property is the fully qualified name of the API. For example, Button
returns Ti.UI.Button.
attendees#
Type: Array<Titanium.Calendar.Attendee>
The list of event attendees. This list will be empty if the event has no attendees.
bubbleParent#
Type: Boolean
Indicates if the proxy will bubble an event to its parent.
Some proxies (most commonly views) have a relationship to other proxies, often
established by the add() method. For example, for a button added to a window, a
click event on the button would bubble up to the window. Other common parents are
table sections to their rows, table views to their sections, and scrollable views
to their views. Set this property to false to disable the bubbling to the proxy's parent.
isDetached#
Type: Boolean
Boolean value that indicates whether an event is a detached instance of a
repeating event.
This value is YES if and only if the event is part of a repeating event
and one or more of its attributes have been modified from the repeating event's
default attributes.
lifecycleContainer#
Type: Titanium.UI.Window, Titanium.UI.TabGroup
The Window or TabGroup whose Activity lifecycle should be triggered on the proxy.
If this property is set to a Window or TabGroup, then the corresponding Activity lifecycle event callbacks
will also be called on the proxy. Proxies that require the activity lifecycle will need this property set
to the appropriate containing Window or TabGroup.
recurrenceRules#
Type: Array<Titanium.Calendar.RecurrenceRule>
The recurrence rules for the calendar item.
On Android, only the first element of the recurrenceRules is taken into account
due to the way it handles conditions for recurrence rules.
Methods #
addEventListener #
Adds the specified callback as an event listener for the named event.
| Name | Type | Summary | Optional |
|---|---|---|---|
name | String | Name of the event. | No |
callback | Callback<Titanium.Event> | Callback function to invoke when the event is fired. | No |
addRecurrenceRule #
Adds a recurrence rule to the recurrence rule array.
| Name | Type | Summary | Optional |
|---|---|---|---|
rule | Titanium.Calendar.RecurrenceRule | The recurrence rule to be added. | No |
applyProperties #
Applies the properties to the proxy.
Properties are supplied as a dictionary. Each key-value pair in the object is applied to the proxy such that
myproxy[key] = value.
| Name | Type | Summary | Optional |
|---|---|---|---|
props | Dictionary | A dictionary of properties to apply. | No |
createAlert #
Creates an alert for this event.
| Name | Type | Summary | Optional |
|---|---|---|---|
data | Dictionary<Titanium.Calendar.Alert> | Properties for the alert. | No |
Returns: Titanium.Calendar.Alert
createRecurrenceRule #
Creates an recurrence pattern for a recurring event.
All of the properties for the recurrence rule must be set during creation.
The recurrence rule properties cannot be modified.
| Name | Type | Summary | Optional |
|---|---|---|---|
data | Dictionary<Titanium.Calendar.RecurrenceRule> | Properties for the recurrence rule. | No |
Returns: Titanium.Calendar.RecurrenceRule
createReminder #
Creates a reminder for this event.
| Name | Type | Summary | Optional |
|---|---|---|---|
data | Dictionary<Titanium.Calendar.Reminder> | Properties for the reminder. | No |
Returns: Titanium.Calendar.Reminder
fireEvent #
Fires a synthesized event to any registered listeners.
| Name | Type | Summary | Optional |
|---|---|---|---|
name | String | Name of the event. | No |
event | Dictionary | A dictionary of keys and values to add to the Titanium.Event object sent to the listeners. | Yes |
getExtendedProperty #
Gets the value of the specified extended property.
| Name | Type | Summary | Optional |
|---|---|---|---|
name | String | Name of an existing extended property. | No |
Returns: String
refresh #
Updates the event's data with the current information in the Calendar database.
This method should be only used on events that your application is editing, and only
when your application receives the change notification.
If this method returns NO, the event has been deleted or otherwise invalidated,
and you should not continue to use it.
Returns: Boolean
remove #
Removes an event from the calendar.
This method raises an exception on iOS if an event from another calendar is used.
| Name | Type | Summary | Optional |
|---|---|---|---|
span | Number | iOS-only: The span to use. Indicates whether to remove future instances of the event in the case of a recurring event. | No |
Returns: Boolean
removeEventListener #
Removes the specified callback as an event listener for the named event.
Multiple listeners can be registered for the same event, so the
callback parameter is used to determine which listener to remove.
When adding a listener, you must save a reference to the callback function
in order to remove the listener later:
var listener = function() { Ti.API.info("Event listener called."); }
window.addEventListener('click', listener);
To remove the listener, pass in a reference to the callback function:
window.removeEventListener('click', listener);
| Name | Type | Summary | Optional |
|---|---|---|---|
name | String | Name of the event. | No |
callback | Callback<Titanium.Event> | Callback function to remove. Must be the same function passed to addEventListener. | No |
removeRecurrenceRule #
Removes a recurrence rule to the recurrence rule array.
| Name | Type | Summary | Optional |
|---|---|---|---|
rule | Titanium.Calendar.RecurrenceRule | The recurrence rule to be removed. | No |
save #
Saves changes to an event permanently.
This method raises an exception if it is passed an event from another calendar.
When an event is saved, it is updated in the Calendar database. Any fields you did
not modify are updated to reflect the most recent value in the database. If the
event has been deleted from the database, it is re-created as a new event.
On Android, this method only updates the recurrence rule (if set). See TIMOB-24248
to track this new feature.
| Name | Type | Summary | Optional |
|---|---|---|---|
span | Number | The span to use. Indicates whether the save affects future instances of the event in the case of a recurring event. | No |
Returns: Boolean
setExtendedProperty #
Sets the value of the specified extended property.
| Name | Type | Summary | Optional |
|---|---|---|---|
name | String | Property name. | No |
value | String | Property value. | No |