Changeset 31 for trunk/CHANGELOG

Show
Ignore:
Timestamp:
11/01/08 20:39:14 (4 years ago)
Author:
tsuckowhomberg
google:author:
tsuckowhomberg
Message:
  • enhancement: (Toolbar.js) config object allows now to specify either the grid or the view the toolbar is bound to
  • fixed: (Store.js) "getAt()" would return "-1" if the data at the passed index could not be found in some cases; changed to return type "undefined"
  • fixed: (GridView?.js) overrode method "getCell()" to return "null" if the row for the specified index could not be found
  • fixed: firing of event "cursormove" would happen before "replaceLiveRows()" has taken care of re-assigning the rowIndex to the rows in the view which could lead to errors; adjusted method and made sure that "replaceLiveRows()" is called first
  • enhancement: (EditorGridPanel?.js, GridPanel?.js) added basic support for using cell editors for the Livegrid (EditorGridPanel?-support)
  • enhancement: (ext-ux-livegrid.css, DragZone?.js) minor code cleanups, changed css class "x-dd-drop-waiting" to "ext-ux-livegrid-drop-waiting"
  • enhancement: (GridView?.js) added method "getRow()", removed overriden method "onCellSelect()", "onCellDeselect()", "onRowOver()", "onRowOut()" and changed arguments for call of methods that operate on Html-elements in the view to pass the model index as specified in the elements "rowIndex"-property, which will get translated internally to the html-element's index in the view, for broadening

compatibility to other plugins/exension, such as the EditorGridPanel?

  • enhancement: (GridView?.js) changed behavior of "processRows()" to paint the selections if the third argument does not equal to "false"
  • enhancement: (RowSelectionModel?.js) added method "deselectRecord()" to deselect a record that is already selected in the model
  • enhancement: (GridView?.js) added method "isRecordRendered()" to check whether the passed record is currently within the visible rect of the grid's view
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r30 r31  
    1  - enhancement: removed programmatically invoking scroll in IE when the grid is rendered, 
     1Version 0.3a2 (GPL) 
     21-November-2008 
     3 
     4 - enhancement: (Toolbar.js) config object allows now to specify either the grid 
     5or the view the toolbar is bound to 
     6 - fixed: (Store.js) "getAt()" would return "-1" if the data at the passed index 
     7could not be found in some cases; changed to return type "undefined" 
     8 - fixed: (GridView.js) overrode method "getCell()" to return "null" if the row 
     9for the specified index could not be found 
     10 - fixed: firing of event "cursormove" would happen before "replaceLiveRows()" 
     11has taken care of re-assigning the rowIndex to the rows in the view which could 
     12lead to errors; adjusted method and made sure that "replaceLiveRows()" is called 
     13first 
     14 - enhancement: (EditorGridPanel.js, GridPanel.js) added basic support for using 
     15cell editors for the Livegrid (EditorGridPanel-support) 
     16 - enhancement: (ext-ux-livegrid.css, DragZone.js) minor code cleanups, changed 
     17css class "x-dd-drop-waiting" to "ext-ux-livegrid-drop-waiting" 
     18 - enhancement: (GridView.js) added method "getRow()", removed overriden method 
     19"onCellSelect()", "onCellDeselect()", "onRowOver()", "onRowOut()" and changed 
     20arguments for call of methods that operate on Html-elements in the view to pass 
     21the model index as specified in the elements "rowIndex"-property, which will get 
     22translated internally to the html-element's index in the view, for broadening 
     23compatibility to other plugins/exension, such as the EditorGridPanel 
     24 - enhancement: (GridView.js) changed behavior of "processRows()" to paint the selections 
     25if the third argument does not equal to "false" 
     26 - enhancement: (RowSelectionModel.js) added method "deselectRecord()" to deselect a record 
     27that is already selected in the model 
     28 - enhancement: (GridView.js) added method "isRecordRendered()" to check whether the passed 
     29record is currently within the visible rect of the grid's view 
     30 - enhancement: removed programmatically invoking scroll in IE when the grid is rendered, 
    231since this was fixed due to the css changes in a previously version 
    332 - fixed: (RowSelectionModel.js) method "isSelected()" would lose it's original argument