Listing calendars in Symbian Web Runtime
Article Metadata
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 5th Edition
Article
Keywords: device.getServiceObject(), Service.Calendar.GetList()
Created: tapla
(16 Jan 2009)
Last edited: hamishwillee
(05 Oct 2012)
Contents |
Overview
This code snippet shows how to list calendars in Symbian Web Runtime using the Calendar Platform Service introduced in S60 5th Edition.
The device.getServiceObject("Service.Calendar", "IDataSource") method is used to obtain access to the service object for the Calendar Service API.
Source: Relevant HTML components
<label for="calendarList">Calendars:</label><br />
<select size="2" id="calendarList" onclick="showEvents();"></select>
Source: JavaScript file
var serviceObj = null;
window.onload = init;
// Initializes the widget
function init() {
// Obtain the service object
try {
serviceObj = device.getServiceObject("Service.Calendar",
"IDataSource");
} catch (ex) {
alert("Service object cannot be found.");
return;
}
listCalendars();
}
function listCalendars() {
try {
var filter = new Object();
// Not using the default calendar
filter.DefaultCalendar = false;
// Criteria for fetching calendars
var criteria = new Object();
criteria.Type = "Calendar";
criteria.Filter = filter;
// Get the list of calendars
result = serviceObj.IDataSource.GetList(criteria);
if (result.ErrorCode == 0) {
showCalendars(result.ReturnValue);
} else {
alert("Error in getting calendars");
}
} catch( exception ) {
alert("initialize error: " + exception);
}
}
function showCalendars(iterator) {
var calendarList = document.getElementById("calendarList");
// Empty the calendar list
while (calendarList.length != 0) {
calendarList.remove(0);
}
// Set the pointer to the first element
iterator.reset();
var item;
while ((item = iterator.getNext()) != undefined) {
var node = document.createElement("option");
node.value = item;
node.appendChild(document.createTextNode(item));
calendarList.appendChild(node);
}
}
Postconditions
Available calendars are displayed.

