blob: 1e40a3bdecb4b3b5359bc1e8baf194d9e0a1fbfb (
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
|
<?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');
}
}
|