Kendo UI reference not working in Razor view

后端 未结 10 2302
感情败类
感情败类 2021-02-19 09:10

I am trying to create a Telerik Grid view but when I go to reference kendo it does not recognize it. Visual Studio is giving me an error when I try to reference kendo. This is t

10条回答
  •  遥遥无期
    2021-02-19 09:28

    For me, it was _ViewImports.cshtml that I needed to edit

    @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
    @addTagHelper *, Kendo.Mvc
    @using Kendo.Mvc.UI
    

    Now with asp.net core 2.2 the razor page is resolving the @(Html.Kendo()...

提交回复
热议问题