Grid doesn't appear in custom admin module in Magento

后端 未结 3 1085
轻奢々
轻奢々 2021-01-19 03:23

I am trying to create a custom module in magento admin. I have reached the point where a new link has been added to the menu and by clicking on it, I can navigate to the ind

3条回答
  •  天命终不由人
    2021-01-19 04:26

    Just had a quick view and the only thing I can see in your code is:

    protected function _prepareCollection() {       
            $collection = Mage::getModel('brands/brands')->getCollection();
            $this->setCollection($collection);
            return parent::_prepareCollection();
        }
    
    //Try to use it like this:
    protected function _prepareCollection() {       
            $collection = Mage::getModel('brands/brands')->getCollection();
            $this->setCollection($collection);
            parent::_prepareCollection();
            return $this;
        }
    

提交回复
热议问题