From b3ceed048bb533a00bbea542f7c12b49c8c83d9b Mon Sep 17 00:00:00 2001 From: wei <> Date: Sat, 17 Jun 2006 01:55:05 +0000 Subject: Update changes to active controls, add FT tests for active controls, add comments. --- .../Web/UI/ActiveControls/TCallbackClientSideOptions.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php') diff --git a/framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php b/framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php index 3f54e013..e8c2dc26 100644 --- a/framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php +++ b/framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php @@ -266,11 +266,17 @@ class TCallbackClientSideOptions extends TClientSideOptions return is_null($option) ? true : $option; } + /** + * @return string post back target ID + */ public function getPostBackTarget() { return $this->getOption('EventTarget'); } + /** + * @param string post back target ID + */ public function setPostBackTarget($value) { if($value instanceof TControl) @@ -278,17 +284,21 @@ class TCallbackClientSideOptions extends TClientSideOptions $this->setOption('EventTarget', $value); } + /** + * @return string post back event parameter. + */ public function getPostBackParameter() { return $this->getOption('EventParameter'); } + /** + * @param string post back event parameter. + */ public function setPostBackParameter($value) { $this->setOption('EventParameter', $value); } - - } ?> \ No newline at end of file -- cgit v1.2.3