Changeset 29
- Timestamp:
- 10/07/08 18:42:13 (4 years ago)
- google:author:
- tsuckowhomberg
- Location:
- trunk
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/RowSelectionModel.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r28 r29 1 1 2 - fixed: (RowSelectionModel.js) method "isSelected()" would lose it's original argument 3 while processing it, which could lead to erroneous behavior 2 4 - fixed: (GridView.js) missing call to "isBuffering = true" in "updateLiveRows()" 3 5 made the component to ignore a previously set queue and request new data immediately -
trunk/src/RowSelectionModel.js
r26 r29 298 298 { 299 299 if (typeof index == "number") { 300 index = this.grid.store.getAt(index); 300 var orgInd = index; 301 index = this.grid.store.getAt(orgInd); 301 302 if (!index) { 302 var ind = this.getPendingSelections().indexOf( index);303 var ind = this.getPendingSelections().indexOf(orgInd); 303 304 if (ind != -1) { 304 305 return true; 305 306 } 307 308 return false; 306 309 } 307 310 }
