I'm working on query google calendar by Javascript. and I've found
that the example shows how to query the property "Title" from the feed
by using the method entry.getTitle().getText(); but I can't find
information about the method to get the vaule of property
"where"...can somebody give me some reference about this problem?
function listEvents(feedRoot) {
var entries = feedRoot.feed.getEntries();
var len = entries.length;
for (var i = 0; i < len; i++) {
var entry = entries[i];
var title = entry.getTitle().getText();
var where = ...
--
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en.