When I try to switch between views on my scheduler I get the following Java error and the scheduler does not render, It works fine untill i switch between day, week or month views.
as follows
Microsoft JScript runtime error: '0._preInitialized' is null or not an object
Failes in the followin JS script
Telerik.Web.UI.RadScheduler._preInitialize=
function(_10d,_10e,_10f,_110,_111){
var _112=$("#"+_10d);
if(_112[0]._preInitialized==true&&!$telerik.isIE){
return;
}
line in bold is where the error happens.
I assume I must not have set somthing but just cant find it.
Julian

Expression of type 'System.Nullable`1[System.DateTime]'
cannot be used for parameter of type 'System.Object'
of method 'System.String Concat(System.Object, System.Object)'<telerik:GridCalculatedColumn
UniqueName="Timings"
HeaderText="Timings"
DataType="System.DateTime" DataFields="StartTime, EndTime"
Expression='{0} + " " + "-" + "; " + {1}' DataFormatString="{0:hh:mm tt}" />
<telerik:GridCalculatedColumn
UniqueName="Rates"
HeaderText="Rates"
DataType="System.Decimal" DataFields="Rate, RatePlus"
Expression='{0} + " " + "+" + "; " + {1}' DataFormatString="{0:C2}" />if (hasRWPerm && UserSettings.CheckSetting(Page_UserSettings, Page_Cab.CabRealName, "deleteFolders")){ #region delete_folder GridClientDeleteColumn btnDelete = new GridClientDeleteColumn(); btnDelete.ButtonType = GridButtonColumnType.LinkButton; btnDelete.CommandName = DELETE; btnDelete.Text = DELETE; //btnDelete.HeaderText = "Deleted"; btnDelete.UniqueName = "deleteRow"; btnDelete.Resizable = false; btnDelete.ShowInEditForm = true; btnDelete.ItemStyle.Width = Unit.Pixel(50); btnDelete.ConfirmText = "Do you want to delete this folder?"; RadGridCabFolders.MasterTableView.Columns.Add(btnDelete); #endregion}Hi,
We are currently migrating a conventional ASP.Net application, utilizing Telerik Ajax controls, in MVC. The issue is that we want to achieve exactly the same appearance of the site. So, we are trying to figure out if there is any way to use <telerik:RadColorPicker/> to an MVC application.
Regards