forked from extern/egroupware
Use tree's ActionManager for new ObjectManager, fixes "Action object with id 'mail_drop_move' does not exist"
This commit is contained in:
parent
d3c0314b4d
commit
0377dbe076
@ -393,7 +393,10 @@ var et2_tree = et2_inputWidget.extend(
|
|||||||
if (treeObj == null) {
|
if (treeObj == null) {
|
||||||
// Add a new container to the object manager which will hold the tree
|
// Add a new container to the object manager which will hold the tree
|
||||||
// objects
|
// objects
|
||||||
treeObj = objectManager.addObject(this.id, null, EGW_AO_FLAG_IS_CONTAINER);
|
treeObj = objectManager.addObject(
|
||||||
|
new egwActionObject(this.id, objectManager, null, this._actionManager, EGW_AO_FLAG_IS_CONTAINER),
|
||||||
|
null, EGW_AO_FLAG_IS_CONTAINER
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete all old objects
|
// Delete all old objects
|
||||||
|
Loading…
Reference in New Issue
Block a user