RenderPartial CActiveDataProvider pagination ajax not working yii

My controller code

public function actionRead() {


       $criteria=new CDbCriteria(array(                    


                                'order'=>'id desc',


                            ));


		$enP=new CActiveDataProvider('Readss', array(


			    'criteria'=>$criteria,


			    	'pagination'=>array(


				    'pageSize'=>1,


				),


		    ));


$this->renderPartial('_read', array('data'=>$enP));


}

it display the gridview properly ,

my view code

$this->widget('zii.widgets.grid.CGridView', array(


							  'id'=>'dfsdfsdf',


							    'dataProvider' => $data,


							   'itemsCssClass' => 'sdfsdfdl',


							      'ajaxUpdate' => false,


								'template' => '{summary}{pager}{items}{summary}{pager}',


								  'pager'  => array(


									       'header'         => '',


									       'firstPageLabel' => '<<',


									       'prevPageLabel'  => 'PREVIOUS',


									       'nextPageLabel'  => 'NEXT',


									       'lastPageLabel'  => '>>',


										),


								  'columns'=>array(


								    array(


								      'header'=>'#',


								      'value'=>'++$row',


								      'htmlOptions'=>array(


								      'style'=>'width:50px;'


								      )


								  ),


								    'name',


								    array(


								    'name'=>'Date',


								    'header'=>'Date',


								   


								    'value'=>'Yii::app()->dateFormatter->format("d MMM y",strtotime($data["work_date"]))'


								),


								      


								 ),


						       ));

But when i click my pagination my page is refressing , what mistake i did here ,

I want to load data on click pagination without page refresh.

Please see this link I hope it;s some helpful