Whenever you have dozens of pages of the website content, listing all the links on a single page makes it clumsy and can cause heavy load times. Pagination divides a single piece of content into various pages which directly affect user experience, development of website and SEO.
It is the most common technique of providing navigation. Pagination is already available in default Magento 2 collections like product collection, search collection etc. But recently when we were working on a project of our client, we required to add pagination in custom collection of Magento 2. In order to fulfill this requirement, we dig deeper and went through many approaches, of which the best is what I’m sharing here.
protected $categorycollectionFactory; public function __construct(\Magecomp\Blog\Model\ResourceModel\Category\CollectionFactory $categorycollectionFactory) { $this->categorycollectionFactory = $categorycollectionFactory; } public function getCategory() { //get values of current page. If not the param value then it will set to 1 $page=($this->getRequest()->getParam('p'))? $this->getRequest()->getParam('p') : 1; //get values of current limit. If not the param value then it will set to 1 $pageSize=($this->getRequest()->getParam('limit'))? $this->getRequest()->getParam('limit') : 1; $categorycollection = $this->categorycollectionFactory->create(); $categorycollection->setPageSize($pageSize); $categorycollection->setCurPage($page); return $categorycollection; }
protected function _prepareLayout() { parent::_prepareLayout(); $this->pageConfig->getTitle()->set(__('Categories')); if ($this->getNews()) { $pager = $this->getLayout()->createBlock( 'Magento\Theme\Block\Html\Pager', 'magecomp.category.pager' )->setAvailableLimit(array(5=>5,10=>10,15=>15))->setShowPerPage(true)->setCollection( $this->getCategory() ); $this->setChild('pager', $pager); $this->getCategory()->load(); } return $this; }
public function getPagerHtml() { return $this->getChildHtml('pager'); }
Hope this tutorial has helped you to add pagination in custom collection of Magento 2. Let me know if you require more help or any query regarding this. I would appreciate feedback and suggestions for this blog. Till then, Happy Coding!
Hello Magento Friends, In today’s blog, I will explain How to Add Tooltip in Checkout…
MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…
In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…
Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…
The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…
Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…
View Comments
Hiii
I don't understand that what can i write with '$pager = $this->getLayout()->createBlock(
'Magento\Theme\Block\Html\Pager',
'magecomp.category.pager'' in block file and what should i write in 'magecomp.category.pager' ?
magecomp.category.pager
here
magecomp -> module root name
category->module name
pager->this is from magento default
pager will provide
1) total count and item count for current view . example : Items 7 to 12 of 16 total
2) pagination
3) how many you want to show per page like: 5 items per page ,10 items per page, 15 items per page
Hiii
I don't understand that what can i write with '$pager = $this->getLayout()->createBlock(
'MagentoThemeBlockHtmlPager',
'magecomp.category.pager'' in block file and what should i write in 'magecomp.category.pager' ?