Changeset 43
- Timestamp:
- 05/02/09 14:00:14 (3 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
src/GridView.js (modified) (2 diffs)
-
src/Store.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r38 r43 1 Version 0.3RC2 (GPL) 1 2 02-May-2009 3 - enhancement: "load" event from the store would still fire even if the store 4 would only buffer; added "suspendLoadEvent" to the list of options so the store does suspend 5 its events once a buffer finished (see http://www.extjs.com/forum/showthread.php?p=324046#post324046) 6 7 Version 0.3 (GPL) 8 02-May-2009 9 10 Version 0.3RC2 (GPL) 2 11 07-December-2008 3 12 -
trunk/src/GridView.js
r38 r43 913 913 { 914 914 if (success === true) { 915 this.adjustBufferInset(); 916 915 917 this.fireEvent('buffer', this, this.ds, this.rowIndex, 916 918 Math.min(this.ds.totalLength, this.visibleRows-this.rowClipped), … … 1435 1437 1436 1438 var opts = { 1437 forceRepaint : forceRepaint, 1438 callback : this.liveBufferUpdate, 1439 scope : this, 1440 params : params 1439 forceRepaint : forceRepaint, 1440 callback : this.liveBufferUpdate, 1441 scope : this, 1442 params : params, 1443 suspendLoadEvent : true 1441 1444 }; 1442 1445 -
trunk/src/Store.js
r36 r43 560 560 } 561 561 562 if (options.suspendLoadEvent === true) { 563 this.suspendEvents(); 564 } 562 565 Ext.ux.grid.livegrid.Store.superclass.loadRecords.call(this, o, options, success); 566 if (options.suspendLoadEvent === true) { 567 this.resumeEvents(); 568 } 563 569 }, 564 570
