How to create a link with confirmation dialog using Yii?

sasori picture sasori · Mar 9, 2011 · Viewed 23.3k times · Source

How can I create a link with a confirmation dialog in Yii framework?

Let's say I have

CHtml::link('Delete',array('wsrecruiteducation/delete','id'=>$model->EducID));

how do I convert that code snippet above, into a delete link with a confirm alert before deleting the data?

Answer

Jon picture Jon · Mar 9, 2011

You just need to also use the last parameter of CHtml::link:

CHtml::link(
    'Delete',
     array('wsrecruiteducation/delete','id'=>$model->EducID),
     array('confirm' => 'Are you sure?')
);