Make sure to use correct parent ObjectManager when destroying.

Should fix "Action object with id ... does not exist" errors.
This commit is contained in:
Nathan Gray 2014-10-01 15:37:01 +00:00
parent 9e0b882f92
commit 15be410487

View File

@ -111,9 +111,10 @@ var et2_DOMWidget = et2_widget.extend(et2_IDOMNode,
if(this._actionManager) if(this._actionManager)
{ {
if(egw_getAppObjectManager(false)) var app_om = egw_getObjectManager(this.egw().getAppName(), false,1);
if(app_om)
{ {
var om = egw_getAppObjectManager(false).getObjectById(this.id); var om = app_om.getObjectById(this.id);
if(om) om.remove(); if(om) om.remove();
} }
this._actionManager.remove(); this._actionManager.remove();