kainhel / as3googlecalendarlib

Automatically exported from code.google.com/p/as3googlecalendarlib
0 stars 0 forks source link

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

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
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 aqeel....@gmail.com on 14 Dec 2009 at 11:28