How include javascript in CHtml::ajaxLink

Hello all
I have chtmlajaxlink, I want to reload Datatables when ajax requests are successful, I have the code below and when I execute it, Datatables doesn’t reload.
Please help me…

View :
echo CHtml::ajaxLink($image,
array(’/JobPlant/statuson’, ‘id’ => $id),
array(‘success’ => ‘js:function(data){
$("#datatablejob").dataTable().ajax.reload();
}’)
);

Controller
public function actionStatuson($id) {
$model=new JobPlant;
$list = Yii::app()->db->createCommand(“UPDATE job_plant SET status_job = ‘1’ WHERE id_job = ‘$id’”)->execute();
$this->renderPartial(‘admin’,
array(
‘model’=>$model,
)

               );
   }