Ajax リクエストを使用することもできます。いくつかの依存ドロップダウン リストを作成する場合は、さらに優れています。例えば:
echo $form->dropDownList($profile, $field->varname,CHtml::listData(Countries::model()->findAll(),'short','title'), array(
'class'=>"chzn-select",
'empty'=>"Select country",
'ajax' => array(
'type' => 'POST',
'url'=>$this->createUrl('registration/state'),
'update' => '#Profile_state',
'data'=>array('country'=>'js:this.value',),
'success'=> 'function(data) {
$("#Profile_state").empty();
$("#Profile_state").append(data);
$("#Profile_state").trigger("liszt:updated");
} ',
)));
次に、コントローラーで POST の例を使用できます。
public function actionState()
{
$data=Regions::model()->findAll('country_code=:country_code',
array(':country_code'=> $_POST['country']));
echo "<option value=''>Select state</option>";
$data=CHtml::listData($data,'region_code','region_title');
foreach($data as $value=>$state) {
echo CHtml::tag
('option', array('value'=>$value),CHtml::encode($state),true);
}
}