diff options
Diffstat (limited to 'demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox')
| -rw-r--r-- | demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.page | 77 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.php | 16 | 
2 files changed, 93 insertions, 0 deletions
| diff --git a/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.page b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.page new file mode 100644 index 00000000..cbe58134 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.page @@ -0,0 +1,77 @@ +<com:TContent ID="body">
 +<!-- $Id$ -->
 +<h1>TActiveCheckBox Samples (AJAX)</h1>
 +
 +<table class="sampletable">
 +
 +<tr><td class="samplenote">
 +An active checkbox with <tt>OnCallback</tt>:
 +</td><td class="sampleaction">
 +<com:TActiveCheckBox
 +	AutoPostBack="true"
 +	Text="click me"
 +	OnCheckedChanged="checkboxClicked"
 +	OnCallback="checkboxCallback"
 +	/>
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +A checkbox causing validation on a textbox:
 +</td><td class="sampleaction">
 +<com:TTextBox ID="TextBox" />
 +<com:TRequiredFieldValidator
 +	ControlToValidate="TextBox"
 +	Display="Dynamic"
 +	ErrorMessage="input required in the textbox"
 +	ValidationGroup="Group"
 +	/>
 +<com:TActiveCheckBox
 +	Text="submit"
 +	ValidationGroup="Group"
 +	OnCheckedChanged="checkboxClicked"
 +	OnCallback="checkboxCallback"
 +	/>
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +A checkbox validated by a required field validator:
 +</td><td class="sampleaction">
 +<com:TActiveCheckBox
 +	ID="CheckBox"
 +	Text="Consent"
 +	AutoPostBack="false"
 +	OnCheckedChanged="checkboxClicked"
 +	ValidationGroup="Group2"
 +	/>
 +<com:TActiveButton Text="Submit" ValidationGroup="Group2" />
 +<com:TRequiredFieldValidator
 +	ControlToValidate="CheckBox"
 +	Display="Dynamic"
 +	ErrorMessage="You must consent."
 +	ValidationGroup="Group2"
 +	/>
 +</td></tr>
 +
 +<tr><td class="samplenote">
 +A checkbox validated by a required field validator:
 +</td><td class="sampleaction">
 +<com:TActiveCheckBox
 +	ID="CheckBox2"
 +	Text="Agree"
 +	Checked="true"
 +	OnCheckedChanged="checkboxClicked"
 +	ValidationGroup="Group3"
 +	/>
 +<com:TRequiredFieldValidator
 +	ControlToValidate="CheckBox2"
 +	Display="Dynamic"
 +	ErrorMessage="You must agree."
 +	ValidationGroup="Group3"
 +	/>
 +</td></tr>
 +
 +</table>
 +
 +<com:TJavascriptLogger />
 +
 +</com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.php b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.php new file mode 100644 index 00000000..f0543695 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBox/Home.php @@ -0,0 +1,16 @@ +<?php
 +// $Id$
 +class Home extends TPage
 +{
 +	public function checkboxClicked($sender,$param)
 +	{
 +		$sender->Text= $sender->ClientID . " clicked";
 +	}
 +
 +	public function checkboxCallback($sender, $param)
 +	{
 +		$sender->Text .= ' using callback';
 +	}
 +}
 +
 +?>
\ No newline at end of file | 
