我有两张桌子:
tbl_day:id_day,mon,tues,wed,thurs,fri,sat,sun
tbl_shft:shft_id,start,end,name,status
我想在 tbl_day 中有一个下拉表,其中 mon 依赖于 tbl_shft 名称。
我想出了一个显示班次数据的下拉菜单。我所做的是。
<?php echo $form->labelEx($model,'sun'); ?>
<?php echo CHtml::activeDropDownList($model,'sun',$model -> getCategories(),array('prompt'=>'Select a Shift'))
?>
对于我的模型
public function getCategories(){
//this function returns the list of categories to use in a dropdown
return CHtml::listData(Shift::model()->findAll(), 'shft_id', 'name');}
我的问题是它没有提交。我不知道我的问题出在哪里。我是 Yii 的初学者。希望有人帮忙。提前致谢。