blob: 500d798700745c97098ba245502dfe69a3c256eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
// $Id: Home.php -1 $
class Home extends TPage
{
public function buttonCallback ($sender, $param)
{
switch($this->radio1->SelectedValue)
{
case 1:
$this->getCallbackClient()->evaluateScript("<script> alert('something'); </script>");
break;
case 2:
$this->getCallbackClient()->check($this->check1, !$this->check1->Checked);
break;
case 3:
$this->getCallbackClient()->hide($this->label1);
break;
case 4:
$this->getCallbackClient()->show($this->label1);
break;
case 5:
$this->getCallbackClient()->focus($this->txt1);
break;
}
}
}
?>
|