Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GoogleCalendarService.as - Changes in method createCalendarObject at lines 235 & 237 #4

Open
GoogleCodeExporter opened this issue Mar 16, 2015 · 0 comments

Comments

@GoogleCodeExporter
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant