目前,我有一个现有代码,根据表User的ban_time字段将用户状态显示为“非活动”或“活动”。当User的状态为“Inactive”时,ban_time字段将按当前时间跨度更新(我猜它使用外部包装器插件)
$form->field($user, 'ban_time')->widget(SwitchInput::classname(), [
'type' => SwitchInput::CHECKBOX,
'containerOptions' => ['class' => 'inner-form-group'],
'pluginOptions' => [
'state' => empty($user->ban_time),
'handleWidth' => 60,
'onText' => 'Active',
'offText' => 'Inactive'
],
'pluginEvents' => [
"switchChange.bootstrapSwitch" => "function(event, state) { $('[name=\'User[ban_time]\']').val(state ? 0 : 1) }",
]
])->label('Status');
现在,我需要添加更多状态,而不是“无效”或“有效”。所以我想将此字段更改为dropDownList,但在更改User的状态时,ban_time未更改
$form->field($user, 'ban_time')->dropDownList(
[empty($user->ban_time) =>'Active', !empty($user->ban_time) =>'Inactive']
)->label('Status');
请帮我改变一下
答案 0 :(得分:1)
答案 1 :(得分:1)
例如,如果您有如下所示的下拉列表
echo $form->dropDownListGroup(
$model, 'status', array(
'wrapperHtmlOptions' => array(),
'widgetOptions' => array(
'data' =>$model->getDropdownvalue(),
'htmlOptions' => array(
'prompt' => 'Select Project',
'ajax' => array(
'type' => 'POST',
'url' => your url,
//'dataType' => 'json',
'data'=>array('status'=>'js:this.value'),
)
在您的控制器中,您将使用url
获取下拉列表的值public function actiondropdownvalue(){
$model = new status();
$status = $_POST['status'];
$model->save();
这个例子只显示它是如何工作的。您将需要用户ID来保存特定用户的状态以更新或保存状态。