summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActiveRatingListReadOnlyTest.php
blob: 722f60ea8a4ad2b1945b17d149f2e63bfd259281 (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
37
38
<?php
/**
 * TRatingListTest.php
 * 
 * @author Bradley Booms <Bradley.Booms@nsighttel.com>
 * @version Creation Date: Oct 13, 2008
 */

/**
 * TRatingListTest.php class
 * 
 * 
 * 
 * Properties
 * -
 * 
 * @author Bradley Booms <Bradley.Booms@nsighttel.com>
 * @version Modified Date: Oct 13, 2008
 * 
 * Modifications:
 */
class ActiveRatingListReadOnlyTest extends TPage{
	public function ratingChanged($sender, $param){
		$this->Status->setText($sender->getRating().' : '.$sender->getSelectedValue());
	}

	public function readOnly($sender, $param){
		$this->RatingList->setReadOnly(true);
		$this->Status->setText('ReadOnly=true');
	}
	
	public function writable($sender, $param){
		$this->RatingList->setReadOnly(false);
		$this->Status->setText('ReadOnly=false');
	}
	
}
?>