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?
If you wan't a delet Link with confirmation Dialog, use this
You just need to also use the last parameter of
CHtml::link
:you can do something like this:
The returnUrl will be a post item sent with the request, make sure you make something like this in a controller with delete action: