我有一个工作正常的dijit / Tree。但是,我无法弄清楚如何从id(商店中的id,而不是DOM id)获取特定行的DOM节点。
类似的东西:
myTreeModel.getDomNodeById( id );
我正在使用dijit / Tree,dijit / tree / ObjectStoreModel和dojo / store / memoryStore。
所有内容似乎都是为了获取商店数据,但我希望更改dom节点上的类以响应应用程序中其他位置的事件。
答案 0 :(得分:2)
最后,xyu的链接给了我答案。
首先,我在实例化中将新函数混合到树中:
var myTree = new Tree(
{
model: treeModel,
autoExpand: true,
showRoot: false,
title: 'My Items',
openOnClick: true,
getDomNodeById: function( id ) // new function to find DOM node
{
return this._itemNodesMap[ id ][0];
}
} );
然后我可以这样称呼它:
var treeNode = myTree.getDomNodeById( dataId );
答案 1 :(得分:0)
根据API dijit/Tree
有一个domNode
属性。它应该指向树所在的DOM节点。
答案 2 :(得分:-1)
//code<1.7
dojo.connect('id of tree','onClick',function(evt)
{
console.log(evt.id[0]);
//onclick event tree return id of its node in array
});
//code>1.7
require(['dojo/on'],function()
{
on('id of tree','click',function(evt)
{
console.log(evt.id[0]);
//onclick event tree return id of its node in array
});
});