I solved it!
This forum is marvellous! And the people who answer are very well
knowlegded.
the code that solved the problem:
for (var i = 0; i < eventEntries.length; i++) {
var event = eventEntries[i];
document.writeln(event.getTitle().getText()+'<br/>');
//TextContent tc = (TextContent) event.getContent();
//PlainTextConstruct ptc = (PlainTextConstruct) tc.getContent();
document.writeln('Place: ' + event.getLocations()
[0].getValueString() +'<br/>');
document.writeln('Description: ' + event.getContent().getText()
+'<br/>');
document.writeln('<br/><br/><br/>');
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---