How can I create a link with a confirmation dialog in Yii framework?
Let\'s say I have
CHtml::link(\'Delete\',array(\'wsrecruiteducation/delete\',\'i
You just need to also use the last parameter of CHtml::link:
CHtml::link
CHtml::link( 'Delete', array('wsrecruiteducation/delete','id'=>$model->EducID), array('confirm' => 'Are you sure?') );