blob: e747bb63e6614a0ee6177b3af9a53fb7abb6ce3a (
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";
}
}
?>
|