Changeset 33
- Timestamp:
- 11/01/08 21:19:09 (4 years ago)
- google:author:
- tsuckowhomberg
- Location:
- trunk
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/Toolbar.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r31 r33 1 Version 0.3a2 (GPL) 1 Version 0.3a3 (GPL) 2 1-November-2008 3 4 - fixed: (Toolbar.js) when passing the grid as config parameter, the immediate 5 call to "bind" would throw an error since the views's "ds" property is not available 6 yet 7 8 9 Version 0.3a2 (GPL) 2 10 1-November-2008 3 11 -
trunk/src/Toolbar.js
r31 r33 79 79 80 80 if (this.grid) { 81 this.bind(this.grid.getView()); 82 } else if (this.view) { 83 var me = this; 84 this.view.init = this.view.init.createSequence(function(){ 85 me.bind(this); 86 }, this.view); 87 } else { 88 throw("Ext.ux.grid.livegrid.Toolbar - cfg property view or grid is not available"); 89 } 81 this.view = this.grid.getView(); 82 } 83 84 var me = this; 85 this.view.init = this.view.init.createSequence(function(){ 86 me.bind(this); 87 }, this.view); 90 88 }, 91 89
