blob: e922319eda11cb6161a378789cf4bde09a6304d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
<?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;
    }
}
?>
  |