From 4d8ed423f7b4a8eae2898cc5552829595717a581 Mon Sep 17 00:00:00 2001 From: xue <> Date: Mon, 2 Jan 2006 20:59:17 +0000 Subject: TCheckBoxList and TRadioButtonList completed. --- .../Controls/Samples/TRadioButtonList/Home.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 demos/quickstart/protected/pages/Controls/Samples/TRadioButtonList/Home.php (limited to 'demos/quickstart/protected/pages/Controls/Samples/TRadioButtonList/Home.php') diff --git a/demos/quickstart/protected/pages/Controls/Samples/TRadioButtonList/Home.php b/demos/quickstart/protected/pages/Controls/Samples/TRadioButtonList/Home.php new file mode 100644 index 00000000..47d9b23b --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TRadioButtonList/Home.php @@ -0,0 +1,22 @@ +RadioButtonList->SelectedIndex; + $value=$this->RadioButtonList->SelectedValue; + $text=$this->RadioButtonList->SelectedItem->Text; + $this->SelectionResult->Text="Your selection is (Index: $index, Value: $value, Text: $text)."; + } + + public function selectionChanged($sender,$param) + { + $index=$sender->SelectedIndex; + $value=$sender->SelectedValue; + $text=$sender->SelectedItem->Text; + $this->SelectionResult2->Text="Your selection is (Index: $index, Value: $value, Text: $text)."; + } +} + +?> \ No newline at end of file -- cgit v1.2.3