我正在做一个项目,我需要通过actionCreate调用我的CJuidialog。有没有办法做到这一点?我只想要一个简单的对话框,其中包含一些文本和按钮提交和取消,如果它满足我的条件。这就是我的开始。
public function actionCreate()
{
$model=new EmpSched;
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['EmpSched']))
{
$model->attributes=$_POST['EmpSched'];
if($model->default==1){
Yii::app()->clientScript->registerScript('my_script', 'alert("Hi there!");', CClientScript::POS_READY);
}else{
($model->save());
$this->redirect(array('view','id'=>$model->id_empsched));
}
}
$this->render('create',array(
'model'=>$model,
'emp'=> new CActiveDataProvider('schedule'),
));
}
这是输出:
![在此处输入图片说明] [1]
遇到的问题是我无法在actionCreate中调用CJuidialog。 我想要做的如果它满足我的条件显示对话框,如果不只是保存。
答案 0 :(得分:0)
在yii中,htmlOptions中有一个确认键:
echo CHtml::button('Delete', array('submit' =>Yii::app()->createUrl("/post/delete", array("id" => $model->id)), 'confirm'=>'Are you sure?', 'name'=>'delte'));