summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket669.php
blob: 0131d95c2f8400c9fea1932f552deb2a9748eb94 (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
27
28
29
30
31
32
33
34
35
36
<?php
prado::using ('System.Web.UI.ActiveControls.*');
class Ticket669 extends TPage
{
	public function load1($sender,$param)
	{
		$this->multiView->setActiveViewIndex(1);
		$this->panel1->render($param->getNewWriter());
	}
	public function load2($sender,$param)
	{
		$this->multiView->setActiveViewIndex(2);
		$this->panel1->render($param->getNewWriter());
	}
	public function test1($sender,$param)
	{
		$this->tb1->setText($this->tb1->getText().' +1');
		$this->tb2->setText($this->tb2->getText().' +1');
		$this->panel2->render($param->getNewWriter());
	}
	public function test2($sender,$param)
	{
		$this->tb3->setText($this->tb3->getText().' +1');
		$this->tb4->setText($this->tb4->getText().' +1');
		$this->tb5->setText($this->tb5->getText().' +1');
		$this->panel4->render($param->getNewWriter());
	}
	public function test3($sender,$param)
	{
		$this->tb6->setText($this->tb6->getText().' +1');
		$this->tb7->setText($this->tb7->getText().' +1');
		$this->panel7->render($param->getNewWriter());
	}
}

?>