blob: 2309bd8881b162b94f6a71ec6d78c820f9068530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
Prado::using('Application.pages.Controls.Samples.LabeledTextBox1.LabeledTextBox');
class Home extends TPage
{
public function buttonClicked($sender,$param)
{
$sender->Text=$this->Input->TextBox->Text;
}
}
?>
|