mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Fix some more bugs in egw_refresh() delete:
- Fix selecting next row selecting current row instead - Fix subsequent deletes not removing row
This commit is contained in:
parent
ba29a6b94b
commit
12fc2ba8d0
@ -443,7 +443,7 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
|
|||||||
// Record current & next index
|
// Record current & next index
|
||||||
var uid = app + "::" + _row_ids[0];
|
var uid = app + "::" + _row_ids[0];
|
||||||
var entry = this.controller._selectionMgr._getRegisteredRowsEntry(uid);
|
var entry = this.controller._selectionMgr._getRegisteredRowsEntry(uid);
|
||||||
var next = (entry.ao?entry.ao.getNext(_row_ids.length-1):null);
|
var next = (entry.ao?entry.ao.getNext(_row_ids.length):null);
|
||||||
if(next == null || !next.id)
|
if(next == null || !next.id)
|
||||||
{
|
{
|
||||||
// No next, select previous
|
// No next, select previous
|
||||||
@ -464,6 +464,8 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
|
|||||||
uid = app + "::" + _row_ids[i];
|
uid = app + "::" + _row_ids[i];
|
||||||
entry = this.controller._selectionMgr._getRegisteredRowsEntry(uid);
|
entry = this.controller._selectionMgr._getRegisteredRowsEntry(uid);
|
||||||
grid_IDs.push(entry.idx);
|
grid_IDs.push(entry.idx);
|
||||||
|
// Trigger controller to remove from internals
|
||||||
|
this.egw().dataStoreUID(uid,null);
|
||||||
// Stop caring about this ID
|
// Stop caring about this ID
|
||||||
this.egw().dataDeleteUID(uid);
|
this.egw().dataDeleteUID(uid);
|
||||||
}
|
}
|
||||||
@ -482,6 +484,7 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
|
|||||||
this.dataview.grid.setTotalCount(total);
|
this.dataview.grid.setTotalCount(total);
|
||||||
// Re-enable automatic updating
|
// Re-enable automatic updating
|
||||||
this.dataview.grid.doInvalidate = true;
|
this.dataview.grid.doInvalidate = true;
|
||||||
|
this.dataview.grid.invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
id_loop:
|
id_loop:
|
||||||
|
Loading…
Reference in New Issue
Block a user