Pagination In Our Own Interface

i would like to use pagination in my webapp but it is working in CRUD but its not working in manual interface…

if anybody have any solution about pagination then reply…

<?php

$this->widget(‘CLinkPager’, array(

                               'itemCount'=&gt; &#036;Count,


                               'pageSize'=&gt; 10,


                               'maxButtonCount'=&gt; 10,


                               'nextPageLabel'=&gt;'Next &gt;&gt;',


                               'header' =&gt; 'Go to page::',


                                //'htmlOptions'=&gt;array('class'=&gt;'pages'),


                            ));

?>

i used above code but all item show in a single page …