Kendo UI reference not working in Razor view

后端 未结 10 2304
感情败类
感情败类 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:42

    Step1: Add Kendo.Mvc.dll to references. You can use the following NuGet gallery command.

    Install-Package Kendo.Mvc -Version {yourversion}
    

    Step2: Add the js and css File of Kendo

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    Step3: Add the Kendo.Mvc.UI namespace in web.config file.

    note: if use the Area in Project you should add this code to web.config of Area.

    
        
            
                
            
        
    
    

提交回复
热议问题