I am getting options for a dropdown from controller ,its working fine .I need those options to be seleced.I tried
echo CHtml::tag('option',array('value' => $id,'selected'=>'selected'),CHtml::encode($value),true);
But its not working ,can any one suggest me how to do this?
This is my code in controller's action
foreach($data as $id => $value)
{
echo CHtml::tag('option',array('value' => $id),CHtml::encode($value),true);
}
Thanks in advance

Help













