This question is locked. New answers and comments are not allowed.
I have a POC project where your grid display correctly - CSS files load properly (verified by doing a "View Source"). I've incorporated all the same changes (web.config changes, StyleSheetRegistrar, ScriptRegistrar) and the CSS files do not load. There's no error indicating that the files can't be found and there's no link statements in the source. Here's my StyleSheetRegistrar statement - turned off combining and compressing in order to test. Can someone assist me with why the styles aren't loading? Thanks in advance!
@{Html.Telerik().StyleSheetRegistrar()
.DefaultGroup(group => group.Add("telerik.common.min.css")
.Add("telerik.office2010blue.min.css")
.CacheDurationInDays(5)
.Combined(false)
.Compress(false)).Render();}
@{Html.Telerik().Grid(Model.Order.SalesOrder.SalesOrderNotes)
.Name("GridNotes")
.Columns(columns =>
{
columns.Bound(o => o.DateCreated);
columns.Bound(o => o.Note);
columns.Bound(o => o.CreatedBy);
})
.Sortable()
.Render();
}
@{Html.Telerik().ScriptRegistrar().DefaultGroup(group => group.Combined(false)
.CacheDurationInDays(5)
.Compress(false))
.jQuery(false)
.Render();
}