mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 11:38:02 +02:00
Various bug fixes in the grid, implemented prefetching, workaround for performance issues regarding update, removed _lastModification
This commit is contained in:
@ -95,11 +95,10 @@
|
||||
|
||||
var dataprovider = Class.extend(et2_IDataProvider, {
|
||||
|
||||
dataFetch: function (_queriedRange, _lastModification, _callback, _context) {
|
||||
dataFetch: function (_queriedRange, _callback, _context) {
|
||||
var response = {
|
||||
"order": data.slice(_queriedRange.start, _queriedRange.start + _queriedRange.num_rows),
|
||||
"total": data.length,
|
||||
"lastModification": 0
|
||||
"total": data.length
|
||||
};
|
||||
|
||||
window.setTimeout(function () {
|
||||
|
Reference in New Issue
Block a user