我有一个Dojo树,我使用getIconClass方法根据项目值更改图标:
_tree = new Tree({
model: _model,
getIconClass: function(item) {
if (item.completed) {
return "iconCompleted";
} else if (item.launched) {
return "iconIncomplete";
} else {
return "iconInitial";
}
}
}, div_id);
当项目属性发生变化时,我正在寻找一种刷新树形视图的方法,现在我发现了这个:
refreshTree : function(){
_tree.rootNode.destroyRecursive();
_tree.model.constructor(_tree.model)
_tree.postMixInProperties();
_tree._load();
}
此函数刷新树,但它实际上重建了视图,因此:
所以我的问题是:在保持扩展节点状态的情况下,动态更新树的方法是什么?
我开始写一些东西来获得扩展节点状态,但是当我需要再次设置扩展节点状态时,因为树视图会显示时间,我需要一个回调来知道树视图何时完成显示,而我没有找到它。顺便说一下BTW是否可以立即显示树视图?
答案 0 :(得分:1)
如果您只想更改图标,则无需重新创建树。您可以使用Observable包装商店,并在商店数据更改时通知树。要更新项目,请使用store.put()函数。
require([
"dojo/store/Memory",
"dojo/store/Observable",
"dijit/tree/ObjectStoreModel",
"dijit/Tree",
"dojo/domReady!"
], function(Memory, Observable, ObjectStoreModel, Tree){
myStore = new Memory({
data: [
{ id: 'world', name:'The earth', type:'planet', population: '6 billion'},
{ id: 'AF', name:'Africa', type:'continent', population:'900 million', area: '30,221,532 sq km',
timezone: '-1 UTC to +4 UTC', parent: 'world'},
{ id: 'EG', name:'Egypt', type:'country', parent: 'AF' },
{ id: 'KE', name:'Kenya', type:'country', parent: 'AF' },
{ id: 'Nairobi', name:'Nairobi', type:'city', parent: 'KE' },
{ id: 'Mombasa', name:'Mombasa', type:'city', parent: 'KE' },
{ id: 'SD', name:'Sudan', type:'country', parent: 'AF' },
{ id: 'Khartoum', name:'Khartoum', type:'city', parent: 'SD' },
{ id: 'AS', name:'Asia', type:'continent', parent: 'world' },
{ id: 'CN', name:'China', type:'country', parent: 'AS' },
{ id: 'IN', name:'India', type:'country', parent: 'AS' },
{ id: 'RU', name:'Russia', type:'country', parent: 'AS' },
{ id: 'MN', name:'Mongolia', type:'country', parent: 'AS' },
{ id: 'OC', name:'Oceania', type:'continent', population:'21 million', parent: 'world'},
{ id: 'EU', name:'Europe', type:'continent', parent: 'world' },
{ id: 'DE', name:'Germany', type:'country', parent: 'EU' },
{ id: 'FR', name:'France', type:'country', parent: 'EU' },
{ id: 'ES', name:'Spain', type:'country', parent: 'EU' },
{ id: 'IT', name:'Italy', type:'country', parent: 'EU' },
{ id: 'NA', name:'North America', type:'continent', parent: 'world' },
{ id: 'SA', name:'South America', type:'continent', parent: 'world' }
],
getChildren: function(object){
// Supply a getChildren() method to store for the data model where
// children objects point to their parent (aka relational model)
return this.query({parent: object.id});
}
});
myStore = new Observable(myStore);
// Create the model
var myModel = new ObjectStoreModel({
store: myStore,
query: {id: 'world'}
});
// Create the Tree.
var tree = new Tree({
model: myModel,
getIconClass: function(item, opened) {
if (item.completed) {
return "dijitLeaf";
} else if (item.launched) {
return (opened ? "dijitFolderOpened" : "dijitFolderClosed");
} else {
return (opened ? "dijitFolderOpened" : "dijitFolderClosed");
}
}
});
tree.placeAt("test");
tree.startup();
});
function changeOceaniaIcon() {
var item = myStore.get('OC');
if (item) {
item.completed = !item.completed;
myStore.put(item);
}
}

<script src="//ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/resources/dojo.css">
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dijit/themes/claro/claro.css">
<div class="claro">
<div id="test"></div>
<button onclick="changeOceaniaIcon();">
Change Oceania Icon
</button>
</div>
&#13;