1

javascript を使用して dijit.Tree の model.rootLabel を更新しようとしています。私はこのようにモデルを設定しました:

<div data-dojo-id="brandsModel" data-dojo-type="dijit.tree.ForestStoreModel"
     rootId="0"
     rootLabel="Brands (15)"
     data-dojo-props="store:myStore, query:{}">

ツリーを更新するために、次のように拡張しました (このコードは、ツリー内の DND でも機能します)。

dojo.extend(dijit.Tree, { refreshModel:function() {
  this._itemNodesMap = {};
  // Collapse root node and set model children to null, so the model
  // will fetch again from the datastore when _expandNode() is called
  this._collapseNode(this.tree.rootNode);
  this.model.root.children = null;
  // Set root NODE to unchecked so that Tree will fetch from the model again
  this.rootNode.state = "UNCHECKED";
 //Set _loadFinished to false, so a new fetch is possible
 this.model.store._loadFinished = false;
 this._expandNode(this.tree.rootNode);
}
});

ツリーにアイテムを追加または削除した後、カウンターも更新しようとします。私はもう試した :

tree.model.rootLabel = 'Brands (16)';
tree.model.root.label = 'Brands (16)';

console.debug(tree) でデバッグすると変更が表示されますが、変更されたラベルを実際に表示するために何を使用すればよいかわかりません。

4

1 に答える 1

2

ルートノードはストア内の実際のアイテムではなく、「_itemNodesMap」内のものだけが更新されます。ルートノードのラベルノードのinnerHTMLを設定する必要があります。

tree.rowNode.set("label", "Brands ( " + tree._itemNodesMap.lenght + " )");
于 2012-06-29T12:31:56.653 に答える