summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Klaer <kj.landwehr.software@gmail.com>2015-08-11 12:36:26 +0200
committerJens Klaer <kj.landwehr.software@gmail.com>2015-08-11 12:36:26 +0200
commit9a01a40029c644be2dfe0d225c1e8fb1265805b4 (patch)
treeed88541de6012eefaea3e617b5bb067a9c4a891d
parent5e9d9802c4b17c5057061e30f92d48c8a3bbd052 (diff)
TActiveCheckBoxList not obeying AutoPostBack="false"
-rw-r--r--framework/Web/UI/ActiveControls/TActiveCheckBoxList.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php b/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php
index ea174c94..1ed76c2e 100644
--- a/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php
+++ b/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php
@@ -111,8 +111,13 @@ class TActiveCheckBoxList extends TCheckBoxList implements IActiveControl, ICall
protected function addAttributesToRender($writer)
{
parent::addAttributesToRender($writer);
- $this->getActiveControl()->registerCallbackClientScript(
- $this->getClientClassName(), $this->getPostBackOptions());
+ if($this->getEnableClientScript()
+ && $this->getAutoPostBack()
+ && $this->getPage()->getClientSupportsJavaScript())
+ {
+ $this->getActiveControl()->registerCallbackClientScript(
+ $this->getClientClassName(), $this->getPostBackOptions());
+ }
}
/**