Changeset 4 for trunk/CHANGELOG

Show
Ignore:
Timestamp:
06/16/08 18:37:37 (4 years ago)
Author:
tsuckowhomberg
Message:
  • enhancement: BufferedGridStore? - added overrride of getAt() method to translate the passed argument to the appropriate index in the model; updated sources to take overriden method into account
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r3 r4  
    1 2008-05-29 
    2 ========== 
    3 - fixed: wrong calculation in BufferedGridView.onLiveScroll (based on lastScrollPosition and actual  
     1 
     2Version 0.1 
     316-June-2008 
     4 
     5- enhancements: 
     6 - BufferedGridStore - added overrride of getAt() method to translate 
     7the passed argument to the appropriate index in the model; updated sources to take 
     8overriden method into account 
     9 - added cfg option "scrollDelay" in BufferedGridView for buffering calls to onLiveScroll  
     10when scroll-event gets fired (thanks to Rich Waters) 
     11 - BufferedStore: removed custom applySort() implementation due to changes in findInsertIndex 
     12 - BufferedStore: changed findInsertIndex to use parent implementation first, then check  
     13return value and adjust the index if needed 
     14 - BufferedStore/BufferedGridView: moved bufferRange-member to BufferedStore 
     15 - BufferedStore: optimized insert() method in BufferedStore 
     16 - allowed to add records at position "0" in grid (existing records get shifted down) 
     17  
     18- fixes: 
     19 - wrong calculation in BufferedGridView.onLiveScroll (based on lastScrollPosition and actual  
    420scrollPosition) caused the view sometimes to not re-render some rows 
    5 - fixed: provided bug fix for "ensureVisible: returned x-coordinate does not take the x-position 
     21 - provided bug fix for "ensureVisible: returned x-coordinate does not take the x-position 
    622of the gridpanel into account" (see http://extjs.com/forum/showthread.php?p=175331#post175331) 
    7 - enhancement: added cfg option "scrollDelay" in BufferedGridView for buffering calls to onLiveScroll  
    8 when scroll-event gets fired (thanks to Rich Waters) 
    9  
    10  
    11 2008-05-28 
    12 ========== 
    13 - fixed: wrong calculation of last displayable row after removing a row caused selection-model 
     23 - wrong calculation of last displayable row after removing a row caused selection-model 
    1424to get out of synch with the store's data 
    15  
    16 2008-05-17 
    17 ========== 
    18 - enhancement: BufferedStore: removed custom applySort() implementation due to changes in findInsertIndex 
    19 - enhancement: BufferedStore: changed findInsertIndex to use parent implementation first, then check  
    20  return value and adjust the index if needed 
    21 - enhancement: BufferedStore/BufferedGridView: moved bufferRange-member to BufferedStore 
    22 - enhancement: BufferedStore: optimized insert() method in BufferedStore 
    23 - fixed: when adding a record to the store on the fly, the ensureVisible-method 
     25 - when adding a record to the store on the fly, the ensureVisible-method 
    2426would not work always corect afterwards 
    25 - fixed: when adding records, a previously made selection would block selecting the 
     27 - when adding records, a previously made selection would block selecting the 
    2628newly added record 
    27  - enhancement: allowed to add records at position "0" in grid (existing records get shifted down) 
    28 - fixed: skipped request for updateLiveRows in Ext.ux.grid.BufferedGridView.adjustVisibleRows 
     29 - skipped request for updateLiveRows in Ext.ux.grid.BufferedGridView.adjustVisibleRows 
    2930when number of total records in store is less than the number of visible rows 
    30 - fixed: request for buffering data in Ext.ux.grid.BufferedGridView.updateLiveRows() did 
     31 - request for buffering data in Ext.ux.grid.BufferedGridView.updateLiveRows() did 
    3132not apply the property "lastOptions.params" to the params sent with the buffer-request 
    32  
    33