gpt4 book ai didi

angularjs - 基诺 UI TreeView Angular JS :- How to select the newly added item?

转载 作者:行者123 更新时间:2023-12-03 22:52:09 25 4
gpt4 key购买 nike

我有一个问题。我可以使用此 TreeView With AngularJS 将新项目添加到 Treeview ,但我无法将此新项目设为选定项目。 如何选择这个新项目
这是我用于向树添加新项目的代码。

var newCreatedCompanyHierarchyItem = this.createNewCompanyHierarchyItem();
this.$scope.tree.append(newCreatedCompanyHierarchyItem, this.$scope.tree.select());

最佳答案

append() 方法有一个回调参数,一旦添加新项目(如果需要,在远程获取 sibling 后)就会调用该参数。回调的参数是附加的 <li> 元素,可用于选择它:

var addedElement = this.$scope.tree.append(newCreatedCompanyHierarchyItem, this.$scope.tree.select(), function (e) {
$scope.tree.select(e);
}));

简单示例: http://dojo.telerik.com/@Stephen/OxOMe

关于angularjs - 基诺 UI TreeView Angular JS :- How to select the newly added item?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41226722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com