summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php
blob: 840991142d7ab85817410653686bd5ca507d35c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class ClientSideDispatch extends TPage
{

	function method1($sender, $param)
	{
		$this->status1->Text = "Method 1 callback with parameter: {$param->CallbackParameter}";
	}

	function method2($sender, $param)
	{
		$this->status2->Text = "Method 2 callback";
	}
}

?>