ASP.NET AJAX $find method failes when used in jQuery's $(document).ready() method

后端 未结 3 1328
我在风中等你
我在风中等你 2021-01-26 00:24

I\'m trying to find a tree using ASP.NET AJAX\'s client-side framework. I also use jQuery for doing any JavaScript operation after the DOM is ready. my code is like:

<         


        
3条回答
  •  失恋的感觉
    2021-01-26 01:18

    this worked for me with Telerik controls:

    $telerik.$(document).ready(function () {
        var tree = $telerik.$find("<%=RadTreeView1.ClientID%>");
    });
    

    see this http://www.telerik.com/help/aspnet-ajax/introduction-using-jquery.html

提交回复
热议问题