我的页面上有3个依赖的下拉列表用于创建实体。
echo CHtml::dropDownList('OpenLessons[Building]', '', $buildingList,array(
'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('ajax/floorList'), //url to call.
'update'=>'#OpenLessons_Floor', //selector to update
)));
echo CHtml::dropDownList('OpenLessons[Floor]','', array(),array(
'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('ajax/roomList'),
'update'=>'#OpenLessons_Class_ID',
)));
echo CHtml::dropDownList('OpenLessons[Class_ID]',$model->Class_ID, array());
现在我想在编辑时为他们选择选项: 我找到了如何给出选定的选项。我发现here该怎么做。 首先选择具有以下代码:
<select name="OpenLessons[Building]" id="OpenLessons_Building">
<option value="19">primary school</option>
<option value="6">high school</option>
</select>
所以,我想把它的值设置为高中。例如。
echo CHtml::dropDownList('OpenLessons[Building]', '', $buildingList,array(
'ajax' => array(
'type'=>'POST',
'url'=>CController::createUrl('ajax/floorList'),
'update'=>'#OpenLessons_Floor',
'options' => array('High school'=>array('selected'=>true)),
//Also tried this 'options' => array('6'=>array('selected'=>true)),
)));
编辑实体时所选择的值总是 - 小学。怎么了? 的更新 @Tristup帮助我设置了第一次下拉的值,但还有两个依赖的下拉,我遇到了问题。 这是我的next question
答案 0 :(得分:1)
dropDownList的第二个参数是默认选择。
Chtml::dropDownList($name, $select, $data)
示例:
$options = array ('0' => 'Select A Value', '1' => 'Tristup','2'=>'Sergey');
echo CHtml::dropDownList('mySelect', '0', $options);
此处'0'是默认选择的值。
希望这对你有用。