summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/protected/pages/CompositeControl.page
blob: b135445a06e9a52ab320f395fec5c61ffebeff7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<com:TContent ID="Content">
<h1>Composite Control Test</h1>
	<com:LabeledTextBox id="user" Label.Text="username:" /><br />
	<com:LabeledTextBox id="pass" Label.Text="password:" /><br />
	<com:TButton Text="Submit" />

<com:TPanel Visible=<%= $this->user->TextBox->Text != "" %> >
<h2>Result</h2>
	User: <%= $this->user->TextBox->Text %> Pass: <%= $this->pass->TextBox->Text %>
</com:TPanel>

</com:TContent>