Telerik and jquery

后端 未结 4 858
南旧
南旧 2021-02-07 08:56

I\'m working on an application I received from a client and they\'ve used some telerik web controls. Telerik apparently includes its own version of jquery 1.3.2, while I\'m usin

4条回答
  •  旧巷少年郎
    2021-02-07 09:34

    I did it by telling Telerik not to register his version of jQuery at all It can be done once for the site in _Layout.cshtml file

    in head section I am loading needed versions of jQuery scripts manually

    
    

    then before

        @(Html.Telerik().ScriptRegistrar().DefaultGroup(
        group => group.Compress(false).Combined(false))
        .jQuery(false)
        .jQueryValidation(false))
    

提交回复
热议问题