문제

There are 11 pages and I am using modulus => 8 which shows 9 page numbers at a time.

Following is the code:

echo $this->Paginator->numbers(
    array('modulus' => 8,
        'separator' => false,
        'before' => '',
        'after' => '',
        'tag' => 'li',
        'class' => false,
        'currentClass' => 'disabled',
        'currentTag' => 'a'
    )
);

The problem is that ellipses ... is not appearing in the pagination numbers. I am using cakephp 2.4.xx and in the documentation its written that ellipses appear automatically.

Please guide me how to bring the ... in the pagination numbers.

도움이 되었습니까?

해결책

it works only when 'first' or 'last' are set to an integer value.

i.e.:

echo $this->Paginator->numbers(
    array('modulus' => 8,
        'separator' => false,
        'before' => '',
        'after' => '',
        'tag' => 'li',
        'class' => false,
        'currentClass' => 'disabled',
        'currentTag' => 'a',
        'first' => 3,
        'last' => 3,
    )
);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top