summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php
diff options
context:
space:
mode:
authorDavid <ottodavid@gmx.net>2015-03-10 21:14:33 +0100
committerDavid <ottodavid@gmx.net>2015-03-11 21:14:29 +0100
commit95eae21c1968cb3be2248004ee5364361cebe02d (patch)
tree6b1591761336e407ea06622f011029dd4b5172db /demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php
parentcf984085056c41c86c5b9fe2144c2e7a73eb807d (diff)
TJuiDialog
Diffstat (limited to 'demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php')
-rw-r--r--demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php
new file mode 100644
index 00000000..f9d1e3a9
--- /dev/null
+++ b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDialog/Home.php
@@ -0,0 +1,33 @@
+<?php
+
+class Home extends TPage
+{
+
+ public function bt1Click($sender, $param)
+ {
+ $this->dlg1->open();
+ }
+
+ public function bt2Click($sender, $param)
+ {
+ $this->dlg2->open();
+ }
+
+ public function bt3Click($sender, $param)
+ {
+ $this->dlg3->open();
+ }
+
+ public function dlg3Ok($sender, $param)
+ {
+ $this->lbl3->Text="Button Ok clicked";
+ $this->dlg3->close();
+ }
+
+ public function dlg3Cancel($sender, $param)
+ {
+ $this->lbl3->Text="Button Cancel clicked";
+ $this->dlg3->close();
+ }
+
+} \ No newline at end of file