diff options
author | xue <> | 2006-01-25 04:56:19 +0000 |
---|---|---|
committer | xue <> | 2006-01-25 04:56:19 +0000 |
commit | 196141bf72e092c911906d9530fa4ddf53bc3276 (patch) | |
tree | 585bb43edbe639326dcef5fc30037614a8b54055 /framework/Web | |
parent | f884ea21ea8f0c6ced02565bd647a5692f82aea4 (diff) |
Added TDropDownList validation demos.
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/UI/WebControls/TDropDownList.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TDropDownList.php b/framework/Web/UI/WebControls/TDropDownList.php index a3c02c15..14a4dac4 100644 --- a/framework/Web/UI/WebControls/TDropDownList.php +++ b/framework/Web/UI/WebControls/TDropDownList.php @@ -26,7 +26,7 @@ Prado::using('System.Web.UI.WebControls.TListControl'); * @package System.Web.UI.WebControls
* @since 3.0
*/
-class TDropDownList extends TListControl implements IPostBackDataHandler
+class TDropDownList extends TListControl implements IPostBackDataHandler, IValidatable
{
/**
* Adds attributes to renderer.
@@ -101,5 +101,15 @@ class TDropDownList extends TListControl implements IPostBackDataHandler {
throw new TNotSupportedException('dropdownlist_selectedindices_unsupported');
}
+
+ /**
+ * Returns the value to be validated.
+ * This methid is required by IValidatable interface.
+ * @return mixed the value of the property to be validated.
+ */
+ public function getValidationPropertyValue()
+ {
+ return $this->getSelectedValue();
+ }
}
?>
\ No newline at end of file |