I ran into one problem with Kendo UI server shells in ASP.NET MVC 4. If I use the default .ASPX view, it understands
<%: Html.Kendo().Grid() %>
But at the same time, if I try to add a Razor view, he doesnβt understand
@(Html.Kendo() ) systax.
I also have an entry in web.config
<namespaces>
<add namespace="Kendo.Mvc.UI" />
<httpHandlers>
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
<handlers>
<add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
Tell me what I am missing and where
Thanks and respect,
Amit
source
share