Hi,
We have been successfully using a Scheduler on a page to show a single person's diary by databinding appointments in the backend (setting DataSource, then calling DataBind).
We now wish to do the same sort of thing to show an office view, where multiple Schedulers are displayed next to each other, similar to the ResourceGrouping sample.
As we do not know how many users there will be in an office, we are using a Repeater, which contains a Scheduler. In the Repeater ItemDataBound event, we get the appointments for that particular user and bind them onto the Scheduler. The initial databinding is kicked off in the Page_Load event.
Unfortunately, the appointments are not appearing. The Scheduler DataSource definitely contains appointments, and the AppointmentDataBound event is being raised. But AppointmentCreated is not raised and no appointments appear on the screen.
The only difference seems to be that the schedulers effectively aren't created until the Page Load event.
Is there any way round this, or is there a better way to create the Schedulers?
We have been successfully using a Scheduler on a page to show a single person's diary by databinding appointments in the backend (setting DataSource, then calling DataBind).
We now wish to do the same sort of thing to show an office view, where multiple Schedulers are displayed next to each other, similar to the ResourceGrouping sample.
As we do not know how many users there will be in an office, we are using a Repeater, which contains a Scheduler. In the Repeater ItemDataBound event, we get the appointments for that particular user and bind them onto the Scheduler. The initial databinding is kicked off in the Page_Load event.
Unfortunately, the appointments are not appearing. The Scheduler DataSource definitely contains appointments, and the AppointmentDataBound event is being raised. But AppointmentCreated is not raised and no appointments appear on the screen.
The only difference seems to be that the schedulers effectively aren't created until the Page Load event.
Is there any way round this, or is there a better way to create the Schedulers?