1. Link
php echo CHtml::link(Yii::t('cmp','Delete'),'javascript:',array('class'=>'c_06c','onclick'=>'return art_del_confirm("/ company/msglog/delete/id/'.$data->zml_id.'","Are you sure you want to delete this message? ")'))?>
2.jq
<script> <br>//Single item deletion confirmation box<br>function art_del_confirm(url,message){ <br>message = message?message:'Are you sure you want to delete this data? '; <br>art.dialog({ <br>title: 'Confirm deletion', <br>okValue: 'Confirm', <br>cancelValue: 'Cancel', <br>width: 230, <br>height: 100, <br>fixed: true, <br>content: message, <br>ok: function () { <br>window.location.href=url; <br>return true; <br>}, <br> cancel: function () { <br>return true; <br>}, <br>}); <br>} <br></script>
Rendering