use pagination (JavaScript) problem

i got a problem with pagination and JavaScript.




$dataProvider=new CActiveDataProvider('data', array('pagination'=>array(

					'pageSize'=>'2')));?>



i used it with a ListView




<?php $this->widget('zii.widgets.CListView', array(

	'dataProvider'=>$dataProvider,

	'itemView'=>'_view',  

	)); ?>



so in my _view i have a CTabView.

its works fine but when i goto the next site . CTabView is not working anymore

the pagination is working fine (and i realy love it ) but when i have for example the

CTabView this is not working anymore after i go to a other page.

controller




$this->render('index',array(),false,true);



so what i dont get.

i checked answer with firebug.

example pagination with some Pictures in it and Draggable.

first site.

jQuery(’#1’).draggable({‘scope’:‘drag’,‘revert’:true,‘opacity’:0.3});

now goto second site check answer with firebug

jQuery(’#2’).draggable({‘scope’:‘drag’,‘revert’:true,‘opacity’:0.3});

so everything right. but the picture are not draggable anymore.

same with TabView