In magento admin ->Manage Product->Grid
I want to show message when filter is reset, any one has any ideas?
Flop ideas,
1. getting it in session cos bock loads first then controller so msg wont be displayed....
2. Over Riding Grid Widet (just for a clear filter msg i wont over ride the module from core...)
Probable solution
public function gridAction()
{
$value=base64_decode(Mage::app()->getRequest()->getParam(’product_filter’));
if (strstr($value, ‘sku’))
{
$this->_getSession()->addSuccess($this->__(’SKU Filter SET’));
}
$this->loadLayout();
$this->renderLayout();
}
in the extended function of Mage_Adminhtml_Catalog_ProductController
http://shivakumariyer.blogspot.in/
https://www.facebook.com/groups/278585072228917/
http://www.magentocommerce.com/boards/viewthread/532353/
http://www.magentocommerce.com/boards/viewthread/532352/
I want to show message when filter is reset, any one has any ideas?
Flop ideas,
1. getting it in session cos bock loads first then controller so msg wont be displayed....
2. Over Riding Grid Widet (just for a clear filter msg i wont over ride the module from core...)
Probable solution
public function gridAction()
{
$value=base64_decode(Mage::app()->getRequest()->getParam(’product_filter’));
if (strstr($value, ‘sku’))
{
$this->_getSession()->addSuccess($this->__(’SKU Filter SET’));
}
$this->loadLayout();
$this->renderLayout();
}
in the extended function of Mage_Adminhtml_Catalog_ProductController
http://shivakumariyer.blogspot.in/
https://www.facebook.com/groups/278585072228917/
http://www.magentocommerce.com/boards/viewthread/532353/
http://www.magentocommerce.com/boards/viewthread/532352/