Hello Sathish,
thanks for the quick answer! It did not solve the Problem for me. Here is my code:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnableScriptGlobalization="true">
<Scripts>
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js"></asp:ScriptReference>
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js"></asp:ScriptReference>
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js"></asp:ScriptReference>
</Scripts>
</telerik:RadScriptManager>
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="Content">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="Content" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<asp:Panel runat="server" ID="Content"
/>
and than I create the scheduler in Code behind like this and add it to the Content Panel:
private RadScheduler _scheduler;
public TelerikScheduleBuilder(string id, int width, int height) {
_scheduler = new RadScheduler();
_scheduler.ID = id;
_scheduler.Skin = "Telerik";
_scheduler.Width = width;
_scheduler.Height = height;
_scheduler.SelectedView = SchedulerViewType.WeekView;
_scheduler.SelectedDate = DateTime.Now;
_scheduler.WorkDayStartTime = TimeSpan.FromHours(5);
_scheduler.WorkDayEndTime = TimeSpan.FromHours(18);
_scheduler.FirstDayOfWeek = DayOfWeek.Monday;
//_scheduler.DisplayDeleteConfirmation = false;
//_scheduler.TimeZoneOffset = TimeSpan.FromHours(1);
_scheduler.Culture = CultureInfo.CreateSpecificCulture("de-DE");
_scheduler.StartEditingInAdvancedForm = true;
_scheduler.EnableDescriptionField = true;
_scheduler.OverflowBehavior = OverflowBehavior.Auto;
_scheduler.AppointmentStyleMode = AppointmentStyleMode.Default;
_scheduler.AllowDelete = true;
_scheduler.AdvancedForm.Modal = true;
_scheduler.WebServiceSettings.Path = "SchedulerWebService.asmx";
_scheduler.TimeSlotContextMenuSettings.EnableDefault = true;
_scheduler.AppointmentContextMenuSettings.EnableDefault = true;
}
public TelerikScheduleBuilder AddToContent(Control content) {
content.Controls.Add(_scheduler);
return this;
}
(Well the same Problem occurs if I create a new Project with the Telerik Scenario Wizards...???)
Nice greetings, Markus