8 Answers, 1 is accepted
0
Hello Sam,
Can you reproduce this problem in any of the online demos?
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Can you reproduce this problem in any of the online demos?
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Mark
Top achievements
Rank 2
answered on 06 Jan 2010, 09:24 PM
Getting the same symptoms here.
Inner Exceptions: |
Cannot parse slot index: 1:1:3 |
Telerik.Web.UI.Scheduler.Views.Month.Model.GetSlotByIndex(String index) at Telerik.Web.UI.Scheduler.Views.SchedulerModel.ProcessPostBackCommand(SchedulerPostBackEvent postBack) at Telerik.Web.UI.RadScheduler.ProcessPostBackCommand(SchedulerPostBackEvent postBack) at Telerik.Web.UI.RadScheduler.RaisePostBackEvent(String eventArgument) at Telerik.Web.UI.RadScheduler.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) |
0
Hello Mark,
Could you please give us the exact steps necessary to replicate this problem? If it is an impediment that prevents further progress for your project, I recommend you open a support ticket and send us a simple working demo of the issue.
Greetings,
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Could you please give us the exact steps necessary to replicate this problem? If it is an impediment that prevents further progress for your project, I recommend you open a support ticket and send us a simple working demo of the issue.
Greetings,
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Sam
Top achievements
Rank 1
answered on 11 Jan 2010, 03:16 PM
I believe I fixed this issue, I was missing a value for the update statement. It wasn't giving me the actual error message instead it threw that cryptic error message.
0
Michael Dunbar
Top achievements
Rank 2
answered on 15 Jan 2010, 10:47 AM
Hi Sam,
Would you mind providing some more details on your solution as I seem to be getting the same error when I try to update or insert an appointment in certain views. Trying to pin down now exactly when the error occurs.
Thanks,
Michael
Would you mind providing some more details on your solution as I seem to be getting the same error when I try to update or insert an appointment in certain views. Trying to pin down now exactly when the error occurs.
Thanks,
Michael
0
Sam
Top achievements
Rank 1
answered on 15 Jan 2010, 02:09 PM
Sure.
The only way I caught it is we have another form (aspx page) that creates these "tasks" and the calendar displays them. The task creation form was missing a variable on insert that the calendar needed and when i went to edit it on the calendar's built in update form it would blow up. Once I fixed that it worked with dragging on the Day view. It's the only way I caught it and honestly when i did fix this I had no idea it would fix the dragging issue. The error message it brings back really tells you nothing about the problem.
The only way I caught it is we have another form (aspx page) that creates these "tasks" and the calendar displays them. The task creation form was missing a variable on insert that the calendar needed and when i went to edit it on the calendar's built in update form it would blow up. Once I fixed that it worked with dragging on the Day view. It's the only way I caught it and honestly when i did fix this I had no idea it would fix the dragging issue. The error message it brings back really tells you nothing about the problem.
0
Mark
Top achievements
Rank 2
answered on 18 Feb 2010, 09:14 PM
I had a line of code that was setting the SelectedView property to SchedulerViewType.MonthView and it was firing on every page load. I change that to only fire on the initial load and that fixed my problem.
0
Alessio
Top achievements
Rank 1
answered on 30 Sep 2014, 12:33 PM
I had the same problem and I fixed it:
If
Not
IsPostBack
Then
RadScheduler1.SelectedView = SchedulerViewType.MonthView
End
If