Full UI theme for CakePHP
To use all pagination controls add next line after table:
echo $this->ViewExtension->buttonsPaging($targetSelector, $showCounterInfo, $useShowList, $useGoToPage, $useChangeNumLines);
To hide information about pages and records set $showCounterInfo
to false
To use only load more button:
echo $this->buttonLoadMore($targetSelector);
To use only bar of page controls:
echo $this->barPaging($showCounterInfo, $useShowList, $useGoToPage, $useChangeNumLines);
To change the limit of entries on the page, set $useChangeNumLines
to true
To use go to the page, set $useGoToPage
to true
To use load more button, set $useShowList
to true
Use $targetSelector
to select data from server response and selection of the element on the
page to add new data (default: table tbody
).