Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

Events navigation, calendar widget


Go to End


1424 Views

Avatar
karibe

Community Member, 56 Posts

3 October 2007 at 8:55pm

Hello

I'm trying to do CalendarWidget. Main problem is how to make weeks partition?

In CalendarWidget.ss it should look like this:

<table>
<% control Weeks %>
<tr>
<% control Days %>
<td class="$Event">$Day</td>
<% end_control %>
</tr>
<% end_control %>
</table>

And main problem is how to make proper dataModel?

I'm trying to do that by:

$output = new DataObjectSet();
for ( $week =1 ; $week >= 5 ; $week++ )
{
$output->push( new DataObjectSet( ), "Weeks" );
}

foreach( $output as $objWeek )
{
$objWeek->push( new ArrayData( array( /* needed data */ ) ) );
}

It doesn't work:( output is empty.

How to made proper data structure for easy template operations?