我已经使用复选框实现了树视图。我的数据是普通数据。我还启用了树视图搜索。 我的示例代码可以在https://codepen.io/ajaybhasy/pen/MrKEMg
找到$("#selection-treeview").dxTreeView({
items: products,
width: 320,
showCheckBoxesMode: "selectAll",
dataStructure: "plain",
keyExpr: "AttributeId",
parentIdExpr: "ParentAttributeId",
displayExpr: "AttributeName",
searchExpr: "AttributeName",
searchEnabled: true,
selectNodesRecursive: false
});
});
这些是我对dxTreeview的设置。 问题在于,当我搜索以下事情时
我已将 selectNodesRecursive设置为false ,因为如果我在检查任何子元素时将其设为true,则在初始加载期间也会检查父级,这在我的情况下是不可接受的。 这是默认行为还是我在这里遗漏了什么?