-
C1Scheduler seems to have a pretty robust means of handling reminders and to be able to handle re-occuring appointments. How can we get access to that logic? For example, I'd like to be able to send reminders via email or SMS. This would mean having a background process which was able to read the...
-
Is there any 'getting started' type doco for C1Scheduler? The help file provides some nice quick guides for most of the components except C1Scheduler and its one of the more complicated controls. Specifically I'd like to see some doco on handling creation/saving of appointments. Jeff
-
Hi IrinaP, I tried your example and it works, but my goal is to have a TwoWay Binding. If I create a new appointment, it should be automatically added to the context.tappointments. Any changed or deleted tappointment in the Scheduler should be changed/deleted in context.tappointments. A workaround would...
-
Hello IrinaP! Thanks again for your answer. My projects are attached to this post. The binding does not work yet. If I create and add appointments to the appointmentstorage use context.AddTotappointments the appointments were displayed and storad is intended. The databinding does not seem to work.
-
Hi IrinaP, thank You for the quicke and detailled answer! I have one more question regaring data binding with the entity framework and the c1 scheduler. Scenario: I have an AppointModel.edmx with an entity "tappointment" with the fields Subject Location Start End Body ID Properties In the window_loaded...
-
Hello, I use the entity framework (ef) as an o/r mapper for my business objects and data tables. Unfortunately the ef does not have a model first approach so that I have to create a data table and map the columns to fields in the ef model. Can I use an entity set directly as a data source for the appointment...
-
I'm working on some custom themes for the C1Scheduler. I have been able to customize everything except the background color of the VisualInterval when C1Scheduler_HighlightDayStatus is set to true and there is an all-day event. I have tracked it down to the StatusBrush property on VisualInterval...
-
Look at attached sample, it shows how to replace IntervalAppointmentTemplate. Custom template is defined in MainPage.xaml resources. C1Scheduler.IntervalAppointmenttemplate property is set to custom template. There is a problem in the current scheduler version: in Day/WorkWeek/Week views C1Scheduler...
-
Hi, I want to place the 3 images and write some number below the images in the day in the scheduler.If we will assign any appointment it will display Start time +Subject. I dont want to display the description like Start time +Subject. Instead if any appointments are there i have to display 3 icons in...
-
I have my C1Scheduler bound to a BindingList<AppointmentItem> list where AppointmentItem implements INotifyPropertyChanged. My appointment data comes from Microsoft Outlook. Everything works perfectly except one scenario. The C1Scheduler allows occurrences of a recurring appointment to be moved...