Akryum / Akryum/as3googlecalendarlib
GoogleCalendarService.as - Changes in method createCalendarObject at lines 235 & 237
- Lingua principale
- ActionScript
- Stelle
- 0
- Fork
- 0
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
```
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
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.