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?
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?')
);