Hi guys,
I try to create a new appointment in my scheduler, but it seems like there is no default template that is used to create my appointment. I see the check mark and the cross (buttons to insert or cancel the appointment creation), but no skin is applied on it.
My code looks like this:
<telerik:RadScheduler ID="AvailScheduler" runat="server" EnableEmbeddedSkins="true" Skin="WebBlue" Width="100%" Height="100%" DataKeyField="uniqueId"
DataSubjectField="subject" DataStartField="start" DataEndField="end" DayEndTime="21:00:00" SelectedView="WeekView"
OnNavigationCommand="AvailScheduler_NavigationCommandClicked" TimelineView-UserSelectable="false" ShowAllDayRow="False" ShowFooter="False"
OnAppointmentClick="AvailScheduler_AppointmentClicked" OnAppointmentCommand="AvailScheduler_AppointmentCommand"
OnAppointmentInsert="AvailScheduler_AppointmentInserted" OnAppointmentCreated="AvailScheduler_AppointmentCreated" WeekHeaderDateFormat="dd.MM" >
<AppointmentTemplate>
<div style="width: 800px;" >
<div><%# Eval("Subject") %></div>
</div>
</AppointmentTemplate>
<TimelineView UserSelectable="False" />
</telerik:RadScheduler>
In AvailScheduler_AppointmentCreated, I only update my update panel. Am I supposed to always create a custom template?? I see many examples that has comething similar to what I use and it works. I include the WebBlue/Scheduler.WebBlue.css file cause it is the skin I use. Should I include something else??
Thx
I try to create a new appointment in my scheduler, but it seems like there is no default template that is used to create my appointment. I see the check mark and the cross (buttons to insert or cancel the appointment creation), but no skin is applied on it.
My code looks like this:
<telerik:RadScheduler ID="AvailScheduler" runat="server" EnableEmbeddedSkins="true" Skin="WebBlue" Width="100%" Height="100%" DataKeyField="uniqueId"
DataSubjectField="subject" DataStartField="start" DataEndField="end" DayEndTime="21:00:00" SelectedView="WeekView"
OnNavigationCommand="AvailScheduler_NavigationCommandClicked" TimelineView-UserSelectable="false" ShowAllDayRow="False" ShowFooter="False"
OnAppointmentClick="AvailScheduler_AppointmentClicked" OnAppointmentCommand="AvailScheduler_AppointmentCommand"
OnAppointmentInsert="AvailScheduler_AppointmentInserted" OnAppointmentCreated="AvailScheduler_AppointmentCreated" WeekHeaderDateFormat="dd.MM" >
<AppointmentTemplate>
<div style="width: 800px;" >
<div><%# Eval("Subject") %></div>
</div>
</AppointmentTemplate>
<TimelineView UserSelectable="False" />
</telerik:RadScheduler>
In AvailScheduler_AppointmentCreated, I only update my update panel. Am I supposed to always create a custom template?? I see many examples that has comething similar to what I use and it works. I include the WebBlue/Scheduler.WebBlue.css file cause it is the skin I use. Should I include something else??
Thx