Changeset 11058
- Timestamp:
- 10/22/07 18:33:41 (15 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/Tree.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/Tree.js
r11034 r11058 64 64 _updateItemClasses: function(item) { 65 65 // summary: set appropriate CSS classes for item (used to allow for item updates to change respective CSS) 66 this.iconNode.style.className = "dijitInline dijitTreeIcon " + this. getIconClass(item);67 this.labelNode.style.className = "dijitTreeLabel " + this. getLabelClass(item);66 this.iconNode.style.className = "dijitInline dijitTreeIcon " + this.tree.getIconClass(item); 67 this.labelNode.style.className = "dijitTreeLabel " + this.tree.getLabelClass(item); 68 68 }, 69 69 … … 859 859 _onSetItem: function(/*Object*/ item){ 860 860 //summary: set data event on an item in the store 861 var identity = this.store.getIdentity(item) ,act861 var identity = this.store.getIdentity(item); 862 862 node = this._itemNodeMap[identity]; 863 863