summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TDropDownList.php
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-25 20:04:57 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-25 20:04:57 +0100
commite4999b25052d1ad9400a0f9fd5289a49eea1bddc (patch)
tree50e9b819fc3326cf08e882b648f8dafc8fec3fa4 /framework/Web/UI/WebControls/TDropDownList.php
parent5230f8f8a86fc1ae5d90f8c74ae65c93e197502b (diff)
More namespace changes
Changed version to 3.2.99; Attempt at fixing autoloading fixed enough namespaces to have some demos running
Diffstat (limited to 'framework/Web/UI/WebControls/TDropDownList.php')
-rw-r--r--framework/Web/UI/WebControls/TDropDownList.php14
1 files changed, 5 insertions, 9 deletions
diff --git a/framework/Web/UI/WebControls/TDropDownList.php b/framework/Web/UI/WebControls/TDropDownList.php
index 9d00e717..cc1a7a9f 100644
--- a/framework/Web/UI/WebControls/TDropDownList.php
+++ b/framework/Web/UI/WebControls/TDropDownList.php
@@ -10,11 +10,7 @@
*/
namespace Prado\Web\UI\WebControls;
-
-/**
- * Includes TListControl class
- */
-Prado::using('System.Web.UI.WebControls.TListControl');
+use Prado\TPropertyValue;
/**
* TDropDownList class
@@ -43,7 +39,7 @@ Prado::using('System.Web.UI.WebControls.TListControl');
* @package Prado\Web\UI\WebControls
* @since 3.0
*/
-class TDropDownList extends TListControl implements IPostBackDataHandler, IValidatable
+class TDropDownList extends TListControl implements \Prado\Web\UI\IPostBackDataHandler, \Prado\Web\UI\IValidatable
{
private $_dataChanged=false;
private $_isValid=true;
@@ -95,7 +91,7 @@ class TDropDownList extends TListControl implements IPostBackDataHandler, IValid
/**
* Raises postdata changed event.
- * This method is required by {@link IPostBackDataHandler} interface.
+ * This method is required by {@link \Prado\Web\UI\IPostBackDataHandler} interface.
* It is invoked by the framework when {@link getSelectedIndex SelectedIndex} property
* is changed on postback.
* This method is primarly used by framework developers.
@@ -109,7 +105,7 @@ class TDropDownList extends TListControl implements IPostBackDataHandler, IValid
/**
* Returns a value indicating whether postback has caused the control data change.
- * This method is required by the IPostBackDataHandler interface.
+ * This method is required by the \Prado\Web\UI\IPostBackDataHandler interface.
* @return boolean whether postback has caused the control data change. False if the page is not in postback mode.
*/
public function getDataChanged()
@@ -127,7 +123,7 @@ class TDropDownList extends TListControl implements IPostBackDataHandler, IValid
/**
* Returns the value to be validated.
- * This methid is required by IValidatable interface.
+ * This methid is required by \Prado\Web\UI\IValidatable interface.
* @return mixed the value of the property to be validated.
*/
public function getValidationPropertyValue()