在我的一个项目中,我使用了dijit.Tree控件。我需要在树中添加搜索并仅显示那些在其中包含搜索词的节点/叶子。但是,我似乎无法弄清楚如何实现这一目标。有人可以帮帮我吗?
答案 0 :(得分:0)
我不能完全确定你的问题,但它应该给出提示,而不是去。
让我们使用参考文档示例作为偏移量,有1)商店2)模型和3)树
var store = new ItemFileReadStore({
url: "{{dataUrl}}/dijit/tests/_data/countries.json"
});
var treeModel = new ForestStoreModel({
store: store,
query: {"type": "continent"}, // note, this bit
rootId: "root",
rootLabel: "Continents",
childrenAttrs: ["children"]
});
new Tree({
model: treeModel
}, "treeOne");
解释上述内容;您已经加载了所有已知的国家和大陆,但“用户”仅选择通过在模型上使用查询来显示大陆 - 然后层次结构以树结构表示。
你想要一个搜索capeabilities的文本框,所以我们挂钩onChange
new dijit.form.TextBox({
onChange: function() {
...
}
});
第一位,获取变量
var searchByName = this.get("value");
var oQuery = treeModel.query;
接下来,在模型上设置一个新查询 - 使用对象mixin保留旧查询
treeModel.query = dojo.mixin(oQuery, { name: '*'+searchByName+'*' });
最后,通知模型及其树已发生更改 - 并重新查询可见项。
treeModel._requeryTop();
NB 如果顶级项目(对于ForestModel)不可见,则即使搜索字符串与其匹配,也不会显示其子元素。 (例如,如果美国大陆与查询不匹配,则不显示阿拉巴马州)
修改的
由于OP有'NB'的议程,这可能不适合需要100%,但它的dojo提供dijit.Tree ..因为它将得到一个漫长的过程来重新编码模型/商店查询包括父母分支直到root我不会在这里做 - 但仍有一些技巧;)
var tree = new dijit.Tree( {
/**
* Since TreeNode has a getParent() method, this abstraction could be useful
* It sets the dijit.reqistry id into the item-data, so one l8r can get parent items
* which otherwise only can be found by iterating everything in store, looking for item in the parent.children
*
*/
onLoad : function() {
this.forAllNodes(function(node) {
// TreeNode.item <-- > store.items hookup
node.item._NID = node.domNode.id
});
},
/* recursive iteration over TreeNode's
* Carefull, not to make (too many) recursive calls in the callback function..
* fun_ptr : function(TreeNode) { ... }
*/
forAllNodes : function(parentTreeNode, fun_ptr) {
parentTreeNode.getChildren().forEach(function(n) {
fun_ptr(n);
if(n.item.children) {
n.tree.forAllNodes(fun_ptr);
}
})
}
});
(未经测试,但可能正常工作)示例:
// var 'tree' is your tree, extended with
tree.forAllNodes = function(parentTreeNode, fun_ptr) {
parentTreeNode.getChildren().forEach(function(n) {
fun_ptr(n);
if(n.item.children) {
n.tree.forAllNodes(fun_ptr);
}
})
};
// before anything, but the 'match-all' query, run this once
tree.forAllNodes(tree.rootNode, function(node) {
// TreeNode.item <-- > store.items hookup
node.item._NID = node.domNode.id
});
// hopefully, this in end contains top-level items
var branchesToShow = []
// run fetch every search (TextBox.onChange) with value in query
tree.model.store.fetch(query:{name:'Abc*'}, onComplete(function(items) {
var TreeNode = null;
dojo.forEach(items, function(item) {
TreeNode = dijit.byId(item._NID+'');
while(TreeNode.getParent()
&& typeof TreeNode.getParent().item._RI == 'undefined') {
TreeNode = TreeNode.getParent();
}
branchesToShow.push(TreeNode.item);
});
}});
// Now... If a success, try updating the model via following
tree.model.onChildrenChange(tree.model.root, branchesToShow);