summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TRadioButtonList.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/WebControls/TRadioButtonList.php')
-rw-r--r--framework/Web/UI/WebControls/TRadioButtonList.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TRadioButtonList.php b/framework/Web/UI/WebControls/TRadioButtonList.php
new file mode 100644
index 00000000..8d80745e
--- /dev/null
+++ b/framework/Web/UI/WebControls/TRadioButtonList.php
@@ -0,0 +1,19 @@
+<?php
+
+class TRadioButtonList extends TCheckBoxList
+{
+ protected function createRepeatedControl()
+ {
+ return new TRadioButton;
+ }
+
+ public function loadPostData($key,$values)
+ {
+ }
+
+ public function raisePostDataChangedEvent()
+ {
+ }
+}
+
+?> \ No newline at end of file