I'm sucessfully using RadGrid and other Rad products in WSS 3.0 but can't get the scheduler to work.
Here's my test code trying to use a List as the datasource:
This is in a custom user control within a web part. The user control runs fine without Scheduler, but when I put this code in a get a 'File not Found'.
I noticed there were some Telerik references in web.config SafeControls so I added the following:
<SafeControl Assembly="Telerik.Web.UI, Version=2008.1.619.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Scheduler" TypeName="*" Safe="True" />
This didn't make any difference as I still get the error. Would the reference to the Skin be causing this? I presume the skin details are somehow built into the main Telerik dll.
cheers,
Steve
Here's my test code trying to use a List as the datasource:
<telerik:RadScheduler runat="server" ID="RadScheduler1" |
Width="750px" Skin="Inox" |
SelectedDate="2007-03-30" DayStartTime="08:00:00" DayEndTime="18:00:00" |
DataSourceID="spdsCalendar" DataKeyField="ID" DataSubjectField="Title" |
DataStartField="MovementFromDate" DataEndField="MovementToDate" |
SelectedView="WeekView"> |
</telerik:RadScheduler> |
<sharepoint:SPDataSource DataSourceMode="List" |
Scope="Default" |
IncludeHidden="true" |
ID="spdsCalendar" runat="server"> |
<SelectParameters> |
<asp:Parameter Name="WebUrl" DefaultValue="/webname/" /> |
<asp:Parameter Name="ListName" DefaultValue="mylist" /> |
</SelectParameters> |
</sharepoint:SPDataSource> |
This is in a custom user control within a web part. The user control runs fine without Scheduler, but when I put this code in a get a 'File not Found'.
I noticed there were some Telerik references in web.config SafeControls so I added the following:
<SafeControl Assembly="Telerik.Web.UI, Version=2008.1.619.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Scheduler" TypeName="*" Safe="True" />
This didn't make any difference as I still get the error. Would the reference to the Skin be causing this? I presume the skin details are somehow built into the main Telerik dll.
cheers,
Steve