You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Retrieve the calendars list from Google
2. Set the values of Calendar's Title and Summary in a Text Control in Flex
3. They both are null even the values exist.
What is the expected output? What do you see instead?
Expected output is the summary/description of the calendar. I received a
null value.
What version of the product are you using? On what operating system?
The latest version on Windows 7.
Please provide any additional information below.
I suggest following changes in codes in createCalendarObject Method at line
235 & 237 of GoogleCalendarService.as
calendar.summary = createSummaryObject(entry.summary);
should be changed as
calendar.summary = createSummaryObject(entry.summary.value);
&
calendar.title = createTitleObject(entry.title);
should be changed as
calendar.title = createTitleObject(entry.title.value);
and this solves the problem.
Original issue reported on code.google.com by [email protected] on 14 Dec 2009 at 11:28
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 14 Dec 2009 at 11:28The text was updated successfully, but these errors were encountered: