Changeset 13861 for branches/1.1
- Timestamp:
- 06/02/08 13:15:05 (6 months ago)
- Files:
-
- 1 modified
-
branches/1.1/dojox/grid/_data/model.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/dojox/grid/_data/model.js
r13590 r13861 603 603 //Handle identity and nonidentity capable stores. 604 604 if(this._canIdentify && !isNotItem){ 605 rowId = this._rowIdentities[this.store.getIdentity(item)].rowId; 605 //Make sure the row in question is actually in our data view. If it isn't, 606 //should just return null. 607 var _rowId = this._rowIdentities[this.store.getIdentity(item)]; 608 if(_rowId){ 609 rowId = _rowId.rowId; 610 } 606 611 }else{ 607 612 //Not efficient, but without identity support,