In the magento admin control panel,
Customers = > GiftCardAccounts
I want to display the total of Balance as a row just below the grid .
I tried to set $this->setCountTotals(true);
in the method public function __construct()
in the Grid.php, but it didn't worked.
Please let me know how to do this exactly. Any help would be greatly appreciated.
I came across yours as I was searching for an answer to this for myself. I find it interesting that this seems to be a non-existant topic of discussion online - maybe everyone has it already figured out?
Here is what you will need to do:
In
etc/config.xml
of your module, override the block like so:Now, in Namespace/Giftcardaccount/Block/Adminhtml/Giftcardaccount/Grid.php, do this:
That should do it!