cakePHP分页视图

时间:2011-10-09 05:19:29

标签: php cakephp pagination paging

所以我为cakePHP设置了分页设置。

我得到的问题是在视图中使用以下

<?php echo $this->Paginator->prev('« Previous'); ?>
<?php echo $this->Paginator->numbers(); ?>
<?php echo $this->Paginator->next('Next »'); ?> 

所以会发生什么,数字显示正常,我可以查看不同的页面。问题是上一个和下一个按钮没有显示出来。我有3个页面,我正在分页。

如果有任何遗漏,请告诉我。

1 个答案:

答案 0 :(得分:2)

也许CSS它将它们设置为禁用?

无论如何尝试

<?php echo $this->Paginator->prev('« Previous', null, null, array('class' => 'disabled')); ?>
<?php echo $this->Paginator->next('Next »', null, null, array('class' => 'disabled')); ?>