summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TActiveListBox.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/ActiveControls/TActiveListBox.php')
-rw-r--r--framework/Web/UI/ActiveControls/TActiveListBox.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveListBox.php b/framework/Web/UI/ActiveControls/TActiveListBox.php
index 30eeba2c..cb982be2 100644
--- a/framework/Web/UI/ActiveControls/TActiveListBox.php
+++ b/framework/Web/UI/ActiveControls/TActiveListBox.php
@@ -51,22 +51,6 @@ class TActiveListBox extends TListBox implements IActiveControl, ICallbackEventH
}
/**
- * Loads user input data. Disables the client-side update during loading
- * and restore the EnableUpdate of ActiveControl after loading.
- * @param string the key that can be used to retrieve data from the input data collection
- * @param array the input data collection
- * @return boolean whether the data of the component has been changed
- */
- public function loadPostData($key,$values)
- {
- $enabled = $this->getActiveControl()->getEnableUpdate();
- $this->getActiveControl()->setEnableUpdate(false);
- $result = parent::loadPostData($key, $values);
- $this->getActiveControl()->setEnableUpdate($enabled);
- return $result;
- }
-
- /**
* Sets the selection mode of the list control (Single, Multiple)
* on the client-side if the {@link setEnableUpdate EnableUpdate}
* property is set to true.