Kendo UI reload treeview

前端 未结 2 1595
说谎
说谎 2021-01-21 11:00

I load a complex treeview with kendo ui via ajax because I need to load the tree with one request (works fine):

$(document).ready(function() {    
    buildTree(         


        
2条回答
  •  终归单人心
    2021-01-21 11:26

    try this on ajax success callback

    var data = $("#treeView").data('kendoTreeView');
        data.dataSource.read();
    

提交回复
热议问题