Jquery Dialog Problem

后端 未结 2 1500
遇见更好的自我
遇见更好的自我 2021-01-03 09:35

Hi every body i am developing a MVC application, and i want to use Jquery dialog . i have the following scenario : I have Telerik tree view, and when i click on any node i w

2条回答
  •  萌比男神i
    2021-01-03 10:10

    Problem solved... when you want to use Telerik Components in your views, you need to register your scripts with script manager like this :

    <% Html.Telerik().ScriptRegistrar().DefaultGroup(group => group
       .Add("jquery-1.4.2.js")
       .Add("jquery.ui.core.js")
       .Add("jquery.ui.widget.js")
       .Add("jquery.ui.mouse.js")       
       .Add("jquery.ui.draggable.js")
       .Add("jquery.ui.button.js")       
       .Add("jquery.ui.resizable.js")
       .Add("jquery.ui.dialog.js")
       .Add("jquery.ui.position.js")
    

    );
    %>

    Regards

提交回复
热议问题