blob: ef9c04022d812334328ab1cbf1d4802e5119f40a (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?php
/**
* TRadioButtonList class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2005-2016 The PRADO Group
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
* @package System.Web.UI.WebControls
*/
/**
* Includes TRadioButton class
*/
Prado::using('System.Web.UI.WebControls.TRadioButton');
/**
* Includes TCheckBoxList class
*/
Prado::using('System.Web.UI.WebControls.TCheckBoxList');
/**
* TRadioButtonList class
*
* TRadioButtonList displays a list of radiobuttons on a Web page.
*
* TRadioButtonList inherits all properties and events of {@link TCheckBoxList}.
* Each TRadioButtonList displays one group of radiobuttons, i.e., at most
* one radiobutton can be selected at a time.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web.UI.WebControls
* @since 3.0
*/
class TRadioButtonList extends TCheckBoxList
{
/**
* @return boolean whether this control supports multiple selection. Always false for radiobutton list.
*/
protected function getIsMultiSelect()
{
return false;
}
/**
* Creates a control used for repetition (used as a template).
* @return TControl the control to be repeated
*/
protected function createRepeatedControl()
{
return new TRadioButtonItem;
}
/**
* Loads user input data.
* This method is primarly used by framework developers.
* @param string the key that can be used to retrieve data from the input data collection
* @param array the input data collection
* @return boolean whether the data of the control has been changed
*/
public function loadPostData($key,$values)
{
$value=isset($values[$key])?$values[$key]:'';
$oldSelection=$this->getSelectedIndex();
$this->ensureDataBound();
foreach($this->getItems() as $index=>$item)
{
if($item->getEnabled() && $item->getValue()===$value)
{
if($index===$oldSelection)
return false;
else
{
$this->setSelectedIndex($index);
return true;
}
}
}
return false;
}
/**
* @throws TNotSupportedException if this method is invoked
*/
public function setSelectedIndices($indices)
{
throw new TNotSupportedException('radiobuttonlist_selectedindices_unsupported');
}
/**
* Gets the name of the javascript class responsible for performing postback for this control.
* This method overrides the parent implementation.
* @return string the javascript class name
*/
protected function getClientClassName()
{
return 'Prado.WebUI.TRadioButtonList';
}
}
class TRadioButtonItem extends TRadioButton {
/**
* Override client implementation to avoid emitting the javascript
*/
protected function renderClientControlScript($writer)
{
}
}
|