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