summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket592.php
blob: 6ace086c3ffedee449938d53f7b3888c7e9ebcd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket592 extends TPage
{
	public function noGroup($sender, $param)
	{
		$this->label1->Text = "radio1 checked:{".$this->radio1->getChecked()."}   radio2 checked:{".$this->radio2->getChecked()."} ";
	}

	public function group($sender, $param)
	{
		$this->label1->Text = "bad_radio1 checked:{".$this->bad_radio1->getChecked()."}   bad_radio2 checked:{".$this->bad_radio2->getChecked()."} ";
	}
	
	public function uniquegroup ($sender,$param)
	{
		$this->label1->Text = "bad_radio3 checked:{".$this->bad_radio3->getChecked()."}   bad_radio4 checked:{".$this->bad_radio4->getChecked()."} ";
	}
	
}