Nope, definitely not working. I've tried with both, Platform Service 1.0 and 2.0 API, no joy. Here is a very simple example widget which just reads every calendar entry on your phone and outputs it to the log file:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script language="javascript" type="text/javascript">
function init() {
var name = "C:Calendar";
var so = device.getServiceObject("Service.Calendar", "IDataSource");
var filter = {Type:'CalendarEntry',Filter:{CalendarName:name}};
var list = so.IDataSource.GetList(filter).ReturnValue;
while (list && (entry = list.getNext()) != undefined) {
var output = 'id=' + entry.id + ',Summary=' + entry.Summary + ',StartTime=' + entry.StartTime;
console.info(output);
document.getElementById('content').innerHTML += output + '<br/>';
}
}
</script>
</head>
<body onload="init();">
<div id="content"></div>
</body>
</html>
This is the output for N97 and N8:
Code:
Info: id=n8C2O7EY4F0cW918X2GVU1,Summary=ExampleAnniversary1,StartTime=Saturday, 14 May, 2011 00:00:00
and this is the output for the E6:
Code:
Info: id=undefined,Summary=undefined,StartTime=undefined