php - Yii Clinkpager displays next 3 buttons and last 3 -


guys! need help. need display pagination in following view: 1 2 3 ... 98 99 100. how can in clinkpager? have tried override method createbuttons, don't know conditions :

   for($i=$beginpage;$i<=$endpage;++$i){              if($this->maxbuttoncount < $pagecount){                  $next = $currentpage + 3;                 if($currentpage <= $next || $currentpage >= $pagecount-3){                     $buttons[]=$this->createpagebutton($i+1,$i,$this->internalpagecssclass,false,$i==$currentpage);                 }             }else{                 $buttons[]=$this->createpagebutton($i+1,$i,$this->internalpagecssclass,false,$i==$currentpage);             }        } 

but not work.


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -