diff options
Diffstat (limited to 'demos/quickstart/protected')
3 files changed, 68 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TImageButton/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TImageButton/Home.page new file mode 100644 index 00000000..e47eea73 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TImageButton/Home.page @@ -0,0 +1,50 @@ +<com:TContent ID="body">
+
+<h1>TImageButton Samples</h1>
+
+<table class="sampletable">
+
+<tr><td class="samplenote">
+A click image button showing the click location:
+</td><td class="sampleaction">
+<com:TImageButton
+ ImageUrl=<%~ hello_world.gif %>
+ Text="hello world"
+ OnClick="buttonClicked"
+ />
+<com:TLabel ID="Result" />
+</td></tr>
+
+<tr><td class="samplenote">
+A command image button:
+</td><td class="sampleaction">
+<com:TImageButton
+ ImageUrl=<%~ hello_world.gif %>
+ Text="hello world"
+ OnCommand="buttonClicked"
+ CommandName="test"
+ CommandParameter="value"
+ />
+<com:TLabel ID="Result2" />
+</td></tr>
+
+<tr><td class="samplenote">
+An image button causing validation:
+</td><td class="sampleaction">
+<com:TTextBox ID="TextBox" />
+<com:TRequiredFieldValidator
+ ControlToValidate="TextBox"
+ Display="Dynamic"
+ ErrorMessage="input required in the textbox"
+ ValidationGroup="Group"
+ />
+<com:TImageButton
+ ImageUrl=<%~ hello_world.gif %>
+ Text="hello world"
+ ValidationGroup="Group"
+ />
+</td></tr>
+
+</table>
+
+</com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/TImageButton/Home.php b/demos/quickstart/protected/pages/Controls/Samples/TImageButton/Home.php new file mode 100644 index 00000000..df61ed82 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TImageButton/Home.php @@ -0,0 +1,18 @@ +<?php
+
+class Home extends TPage
+{
+ public function buttonClicked($sender,$param)
+ {
+ if($param instanceof TCommandEventParameter)
+ {
+ $this->Result2->Text="Command name: $param->CommandName, Command parameter: $param->CommandParameter";
+ }
+ else
+ {
+ $this->Result->Text="You clicked at ($param->X,$param->Y)";
+ }
+ }
+}
+
+?>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/TImageButton/hello_world.gif b/demos/quickstart/protected/pages/Controls/Samples/TImageButton/hello_world.gif Binary files differnew file mode 100644 index 00000000..bc81443c --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TImageButton/hello_world.gif |