Magento 1.9 – How to Hide Paging in Custom Admin Grid

custom-admin-gridgridmagento-1.9pagination

I used the Grid to create a report which shows at most 5 rows so I'd like to hide the Paging altogether. Does anyone know how to hide it?

enter image description here

Thank you for any help!

Tim

Best Answer

In your grid class add this in the constructor:

$this->setPagerVisibility(false);
Related Topic