blob: b1f2c53b8146be5ea98431515192fd5ad9c3bdb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
<?php
class Home extends TPage
{
	public function buttonClicked($sender,$param)
	{
		if($param instanceof TCallbackEventParameter)
		{
			$this->Result2->Text="Callback parameter: $param->CallbackParameter";
		}
		else
		{
			$this->Result->Text="You clicked at ($param->X,$param->Y)";
		}
	}
}
?>
  |