blob: 07bdcd225b878b59a835c9139f3c2a63ab9fec86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket504 extends TPage
{
private $panels = array('panelA', 'panelB', 'panelC','panelD',);
private function showPanel($id, $param) {
foreach($this->panels as $panel) {
if($id == $panel) {
$this->$panel->setVisible(true);
} else {
$this->$panel->setVisible(false);
}
}
}
public function changePanel($sender,$param){
$this->showPanel($param->CallbackParameter, $param);
}
public function loadData_Callback($sender, $param){
die("parameter is ".$param->CallbackParameter);
}
}
|