blob: 3b2ba60e8ca9bddf399534c819045861d552c516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
class ActiveButtonTest extends TPage
{
function onLoad($param)
{
new TActiveButton;
}
function button2_onclick($sender, $param)
{
$this->label1->Text = "Button 1 was clicked ";
}
function button2_oncallback($sender, $param)
{
$this->label1->Text .= "using callback!";
}
}
|