blob: 19c58aeb53f7ad7202873ef27c7652264df55d70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class ActivePanelVisibleTest extends TPage
{
public function showA()
{
$this->pnlB->Visible = false;
$this->pnlA->Visible = true;
}
public function showB()
{
$this->pnlB->Visible = true;
$this->pnlA->Visible = false;
}
}
|