Question

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

Was it helpful?

Solution

In your grid class add this in the constructor:

$this->setPagerVisibility(false);

OTHER TIPS

For magento 2, try below in construct method.

protected function _construct()
{
    parent::_construct();
    $this->setId('postGrid');
    $this->setDefaultSort('customer_prescription_id');
    $this->setDefaultDir('DESC');
    $this->setSaveParametersInSession(true);
    $this->setUseAjax(true);
    $this->setVarNameFilter('post_filter');
    $this->setFilterVisibility(false); //Filter Visibility is disabled
    $this->setDefaultLimit(100); //Default Pagination is set 100
    $this->setPagerVisibility(false); //Pagination Visibility is disabled
}
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top