blob: 5f812c9e74048dded12fe9e2e32549c92a49c49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class Samples extends TPage
{
public function textChanged($sender,$param)
{
$sender->Text="text changed";
}
public function submitText($sender,$param)
{
$this->TextBox1->Text="You just entered '".$this->TextBox1->Text."'.";
}
}
?>
|