Dear Joseph,

Yes, there is a way. using the following you can get the calendar event's
those are prasent in your calendar.
calendarService.getFeed(url, CalendarFeed.class).getEntries();
After that look for the event that you want. Than to get the calendar
details,
calendarEntry.getId(), calendarEntry.getTitle().getPlainText(), or the
following for date & time:

for (When when : calendarEventEntry.getTimes()) {
when.getEndTime(), when.getStartTime()
}

I hope that is what you required...........

On Thu, Sep 8, 2011 at 11:21 PM, Joseph Ruffino <[email protected]>wrote:

> Is there a way when you click on a calendar event, to have that data put in
> a text box on a form?
>
> I can do it with a non-google calendar (just the date right now), but my
> superiors would like the data, time, and, possibly, the event name to go
> into the text box.  Is that at all possible?  I've searched the API, and
> could not find anything about this.
>
> Can anyone help with this issue?
>
> --
> 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://code.google.com/apis/calendar/community/forum.html
>



-- 
Thanks & Regards
Hareen Bejjanki

-- 
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://code.google.com/apis/calendar/community/forum.html

Reply via email to