blob: 829ce873f6d59b48d2210aa606b1493593d894a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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";
}
}
|