blob: a49a8bfa5b774acc9725c7a0f107ec14e5734f5d (
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
|
<?php
class DisplayStyleTest extends TPage
{
function display_button1()
{
$this->button1->Display="Dynamic";
}
function hide_button1()
{
$this->button1->Display="None";
}
function show_button2()
{
$this->button2->Display="Fixed";
}
function hide_button2()
{
$this->button2->Display="Hidden";
}
}
?>
|