mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 16:35:02 +02:00
Fix some nextmatch bugs
- Removed rows could still have jQuery actions bound, resulting in errors - Focused row was not cleared if it was removed, resulting in errors - Fixed double get_rows call on refresh(..., update)
This commit is contained in:
@ -133,6 +133,11 @@ var et2_dataview_selectionManager = /** @class */ (function () {
|
||||
if (typeof this._registeredRows[_uid] !== "undefined"
|
||||
&& this._registeredRows[_uid].tr === _tr) {
|
||||
this._inUpdate = true;
|
||||
// Don't leave focusedEntry
|
||||
// @ts-ignore
|
||||
if (this._focusedEntry !== null && this._focusedEntry.uid == _uid) {
|
||||
this.setFocused(_uid, false);
|
||||
}
|
||||
this._registeredRows[_uid].tr = null;
|
||||
this._registeredRows[_uid].aoi = null;
|
||||
// Remove the action object from its container
|
||||
|
Reference in New Issue
Block a user