10447 Posts in 2223 Topics by 1719 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 772 Views |
-
Event Calendar - Added field not showing up?

18 June 2010 at 2:53am
Hi, I added one field to the CalendarEvents.php which is "Summary".
ind the DB array I put 'Summary' => 'Varchar(255)',
and in the getCMSFields I put $f->addFieldToTab("Root.Content.Main", new TextField("Summary","One Line Summary"), "Content");But in my CalendarEvents.ss file I have $Summary and nothing is showing up.
I entered text in the admin for it.Any idea?
-
Re: Event Calendar - Added field not showing up?

18 June 2010 at 3:34am
The Events() control, despite the misleading name, actually returns CalendarDateTime objects, because Events can have many dates. You need to use the $Event accessor.. $Event.Summary
This is all in the docs under "extending event calendar"..
-
Re: Event Calendar - Added field not showing up?

18 June 2010 at 3:50am
Ahh, thanks
working now. I had tride $Events.Summary and $Summary but not $Event.Summary
| 772 Views | ||
|
Page:
1
|
Go to Top |

