剑道用户界面初始化:
$('#tree').kendoTreeView({
select: function(e){
this.expand(e.node);
}
});
我有第一级树,想通过单击节点加载其他级别。正如我从文档中了解到的,如果使用数据源,它也会加载第一级。
所以我听点击:
$(#tree).on('click', 'li', function(e){
$.ajax({
url: 'ajax.php',
type: 'post',
dataType: 'json',
data: $('#filter').serialize(),
success: function(data){
$.map(data, function(val){
// What to do here?
});
}
});
});
在文档中,我只找到insertAfter和insertBefore,但没有像insertInto这样的东西。
如何将新数据加载li
为子ul
级,或使数据源从二级开始工作?