blob: 56443e960ed3f01ff743b85f56da46cacb4a360d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | <?php
// $Id: Home.php 3189 2012-07-12 12:16:21Z ctrlaltca $
class Home extends TPage
{
	public function checkboxClicked($sender,$param)
	{
		$sender->Text= $sender->ClientID . " clicked";
	}
	public function checkboxCallback($sender, $param)
	{
		$sender->Text .= ' using callback';
	}
}
 |