diff options
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TextBox.php')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TextBox.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TextBox.php b/demos/quickstart/protected/pages/Controls/Samples/TextBox.php new file mode 100644 index 00000000..1e6478de --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TextBox.php @@ -0,0 +1,16 @@ +<?php
+
+class TextBox extends TPage
+{
+ public function textChanged($sender,$param)
+ {
+ $sender->Text="text changed";
+ }
+
+ public function submitText($sender,$param)
+ {
+ $this->TextBox1->Text="You just entered '".$this->TextBox1->Text."'.";
+ }
+}
+
+?>
\ No newline at end of file |