DevExpress复选框树视图搜索错误

时间:2017-12-18 12:29:46

标签: javascript devextreme

我已经使用复选框实现了树视图。我的数据是普通数据。我还启用了树视图搜索。 我的示例代码可以在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的设置。 问题在于,当我搜索以下事情时

  1. 选中的所有父元素都将取消选中。
  2. 所有节点都会扩展。
  3. 我已将 selectNodesRecursive设置为false ,因为如果我在检查任何子元素时将其设为true,则在初始加载期间也会检查父级,这在我的情况下是不可接受的。  这是默认行为还是我在这里遗漏了什么?

0 个答案:

没有答案