diff options
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TLinkButton')
| -rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.page | 58 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.php | 14 | 
2 files changed, 72 insertions, 0 deletions
| diff --git a/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.page new file mode 100644 index 00000000..497e5083 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.page @@ -0,0 +1,58 @@ +<com:TContent ID="body">
 +
 +<h1>TLinkButton Samples</h1>
 +
 +<table class="sampletable">
 +
 +<tr><td class="samplenote">
 +Link button with customized color and font:
 +</td><td class="sampleaction">
 +<com:TLinkButton
 +	Text="link button"
 +	ForeColor="silver"
 +	BackColor="black"
 +	Font.Size="14pt"
 +/>
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +Link button with only body content:
 +</td><td class="sampleaction">
 +<com:TLinkButton>
 +body content
 +</com:TLinkButton>
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +A click link button:
 +</td><td class="sampleaction">
 +<com:TLinkButton Text="click me" Click="buttonClicked" />
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +A command link button:
 +</td><td class="sampleaction">
 +<com:TLinkButton
 +	Text="click me"
 +	Command="buttonClicked"
 +	CommandName="test"
 +	CommandParameter="value"
 +	/>
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +A 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:TLinkButton Text="submit" ValidationGroup="Group" />
 +</td></tr>
 +
 +</table>
 +
 +</com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.php b/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.php new file mode 100644 index 00000000..f18072f2 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.php @@ -0,0 +1,14 @@ +<?php
 +
 +class Home extends TPage
 +{
 +	public function buttonClicked($sender,$param)
 +	{
 +		if($param instanceof TCommandEventParameter)
 +			$sender->Text="Name: {$param->CommandName}, Param: {$param->CommandParameter}";
 +		else
 +			$sender->Text="I'm clicked";
 +	}
 +}
 +
 +?>
\ No newline at end of file | 
