Hi,
I'm trying to figure out why I'm getting the following js errors:
-_1.GroupedByResource is undefined (...Views/Month/GroupedByDate/Model.js)
_1.GroupedByResource is undefined (...Views/Timeline/GroupedByDate/Model.js)
I have disabled all embedded ressources and add the necessary scripts with a script manager.
and my scheduler looks like that:
All Appointments are being inserted in codebehind (no databind).
Used Control Version: RadControls ASP.NET AJAX 2009 1 527
Hopefully somebody already had that error.
I'm trying to figure out why I'm getting the following js errors:
-_1.GroupedByResource is undefined (...Views/Month/GroupedByDate/Model.js)
_1.GroupedByResource is undefined (...Views/Timeline/GroupedByDate/Model.js)
I have disabled all embedded ressources and add the necessary scripts with a script manager.
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| <Scripts> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/Core.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Ajax/Ajax.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/jQuery.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/jQueryPlugins.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/Navigation/NavigationScripts.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadDatePicker.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Input/TextBox/RadInputScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Input/DateInput/RadDateInputScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadCalendarCommonScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadCalendarScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadDateTimePickerScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/RadSchedulerScripts.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Scheduling/AdvancedTemplate.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Month/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Month/GroupedByDate/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Month/GroupedByResource/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Timeline/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Timeline/GroupedByDate/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Timeline/GroupedByResource/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Week/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Week/GroupedByDate/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Week/GroupedByResource/Model.js" /> |
| <asp:ScriptReference Path="~/includes/Scheduler.js" /> |
| </Scripts> |
| </telerik:RadScriptManager> |
and my scheduler looks like that:
| <telerik:RadScheduler ID="RadScheduler1" runat="server" DataKeyField="ID" DataStartField="Start" DataEndField="End" DataSubjectField="Title" |
| ShowHeader="false" AllowInsert="true" |
| FirstDayOfWeek="Monday" LastDayOfWeek="Friday" |
| ShowAllDayRow="true" |
| OnClientAppointmentInserting="AppointmentInserting" OnClientAppointmentEditing="AppointmentEditing" OnAppointmentDelete="RadScheduler1_AppointmentDelete" |
| OnClientAppointmentResizeEnd="AppointmentResizeEnd" OnClientAppointmentMoveEnd="AppointmentMoveEnd" > |
| <TimelineView UserSelectable="false" /> |
| </telerik:RadScheduler> |
All Appointments are being inserted in codebehind (no databind).
Used Control Version: RadControls ASP.NET AJAX 2009 1 527
Hopefully somebody already had that error.