diff options
author | xue <> | 2006-01-02 20:59:17 +0000 |
---|---|---|
committer | xue <> | 2006-01-02 20:59:17 +0000 |
commit | 4d8ed423f7b4a8eae2898cc5552829595717a581 (patch) | |
tree | 69d23707abe6eedf9eda943fe029004aad39ccc8 /framework/Web/UI/WebControls/TListControl.php | |
parent | 2df9a40f504933e28ddb9974b97ae4b2bb893f86 (diff) |
TCheckBoxList and TRadioButtonList completed.
Diffstat (limited to 'framework/Web/UI/WebControls/TListControl.php')
-rw-r--r-- | framework/Web/UI/WebControls/TListControl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TListControl.php b/framework/Web/UI/WebControls/TListControl.php index b32471fb..860cbc48 100644 --- a/framework/Web/UI/WebControls/TListControl.php +++ b/framework/Web/UI/WebControls/TListControl.php @@ -254,7 +254,7 @@ abstract class TListControl extends TDataBoundControl }
}
- protected function getSelectedIndices()
+ public function getSelectedIndices()
{
$selections=array();
if($this->_items)
@@ -267,7 +267,7 @@ abstract class TListControl extends TDataBoundControl return $selections;
}
- protected function setSelectedIndices($indices)
+ public function setSelectedIndices($indices)
{
if($this->_items)
{
|