summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests
diff options
context:
space:
mode:
authorwei <>2006-01-20 00:54:50 +0000
committerwei <>2006-01-20 00:54:50 +0000
commit947642a554584255e07ee33196d9a0ca87388f65 (patch)
treef7b075e0306e119e283c0a7b1c0aa186b62581cd /tests/FunctionalTests
parent66c5465f3d55ea1ce605e2c636adf87ae14b4d95 (diff)
tests
Diffstat (limited to 'tests/FunctionalTests')
-rw-r--r--tests/FunctionalTests/protected/pages/UI/DatePicker.page7
-rw-r--r--tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.page15
-rw-r--r--tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.php11
3 files changed, 33 insertions, 0 deletions
diff --git a/tests/FunctionalTests/protected/pages/UI/DatePicker.page b/tests/FunctionalTests/protected/pages/UI/DatePicker.page
new file mode 100644
index 00000000..7208a76b
--- /dev/null
+++ b/tests/FunctionalTests/protected/pages/UI/DatePicker.page
@@ -0,0 +1,7 @@
+<com:TContent ID="Content">
+<com:TForm>
+ <com:TDatePicker Mode="Button" />
+ <p>aaaa<br />aaaa<br />aaaa<br />aaaa<br />aaaa<br /></p>
+ <com:TDatePicker />
+</com:TForm>
+</com:TContent> \ No newline at end of file
diff --git a/tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.page b/tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.page
new file mode 100644
index 00000000..7585bdbc
--- /dev/null
+++ b/tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.page
@@ -0,0 +1,15 @@
+<com:TContent ID="Content">
+<com:TForm>
+ <com:TPanel DefaultButton="Button2" Width="400px">
+ This is panel content with a <com:TLabel Text="label" Font.Italic="true" />
+ and two buttons: <br/>
+ <com:TButton ID="Button1" Text="button1" Click="buttonClicked" />
+ <com:TButton ID="Button2" Text="button2" Click="buttonClicked" />
+ <com:TLabel ID="Result" ForeColor="red" />
+ <br/>
+ When you change focus to the panel and hit 'enter' key, <tt>button2</tt>
+ will be clicked because it is set as the default button of the panel.
+ </com:TPanel>
+ <com:TJavascriptLogger />
+</com:TForm>
+</com:TContent> \ No newline at end of file
diff --git a/tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.php b/tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.php
new file mode 100644
index 00000000..bc88dc00
--- /dev/null
+++ b/tests/FunctionalTests/protected/pages/UI/TestTPanelDefaultButton.php
@@ -0,0 +1,11 @@
+<?php
+
+class TestTPanelDefaultButton extends TPage
+{
+ public function buttonClicked($sender,$param)
+ {
+ $this->Result->Text="You have clicked on '$sender->Text'.";
+ }
+}
+
+?> \ No newline at end of file