diff options
author | tof <> | 2008-03-14 18:06:07 +0000 |
---|---|---|
committer | tof <> | 2008-03-14 18:06:07 +0000 |
commit | ad493cf393192043dc64e7bc93b381a78032cb0d (patch) | |
tree | 47a21ab9249f060b23b7ee881c3ae48794605809 /framework/Web | |
parent | f2927a652e6e1afa8a22f472a4765dcc418d341e (diff) |
Fixed #669
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/UI/ActiveControls/TActivePanel.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/framework/Web/UI/ActiveControls/TActivePanel.php b/framework/Web/UI/ActiveControls/TActivePanel.php index 6f5c87dd..5885155d 100644 --- a/framework/Web/UI/ActiveControls/TActivePanel.php +++ b/framework/Web/UI/ActiveControls/TActivePanel.php @@ -74,7 +74,17 @@ class TActivePanel extends TPanel implements IActiveControl }
else
{
- $this->getPage()->getAdapter()->registerControlToRender($this,$writer);
+ $this->getPage()->getAdapter()->registerControlToRender($this,$writer); + if ($this->getHasControls()) + { + // If we update a TActivePanel on callback, + // We shouldn't update all childs, because the whole content will be replaced by + // the parent + foreach ($this->findControlsByType('IActiveControl', false) as $control) + { + $control->getActiveControl()->setEnableUpdate(false); + } + }
}
}
}
|