mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
Fix tree's actions no longer available after refreshing the root node
This commit is contained in:
parent
2543a011cb
commit
87a055e7bd
@ -657,7 +657,23 @@ export class et2_tree extends et2_inputWidget
|
||||
else
|
||||
{
|
||||
this.input.loadJSON(this.egw().link(this.autoloading_url, {id: _id}),
|
||||
function(dxmlObject) {self._dhtmlxtree_json_callback(JSON.parse(dxmlObject.xmlDoc.responseText), _id);}
|
||||
function(dxmlObject) {
|
||||
self._dhtmlxtree_json_callback(JSON.parse(dxmlObject.xmlDoc.responseText), _id);
|
||||
|
||||
// refreshing root node causes binding actions fails in dhtmlx tree, we try to refresh the opened node
|
||||
// in order to rebind the actions again.
|
||||
if (_id == 0)
|
||||
{
|
||||
let openedId = self._oldValue.split("::")[0];
|
||||
let interval = setInterval(()=> {
|
||||
if (self.input.getOpenState(openedId))
|
||||
{
|
||||
clearInterval(interval);
|
||||
self.refreshItem(openedId);
|
||||
}
|
||||
}, 100);
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user