diff options
Diffstat (limited to 'framework/Web/UI/WebControls/TDropDownList.php')
-rw-r--r-- | framework/Web/UI/WebControls/TDropDownList.php | 14 |
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() |