如何在magento自定义管理模块的选项卡下添加网格?

时间:2013-12-19 13:23:20

标签: magento magento-1.7

我想在标签部分下的自定义模块中创建一个网格,就像customer ->wish list标签下显示的一样。

1 个答案:

答案 0 :(得分:1)

假设您使用方法3 @ http://www.nextbits.eu/blog/how-to-add-tab-in-customer-information-in-magento-admin/

class Namespace_ModuleName_Block_Adminhtml_Customer_Tab
extends Mage_Adminhtml_Block_Template
implements Mage_Adminhtml_Block_Widget_Tab_Interface {
   /**
     * Set the template for the block
     *
     */
    public function _construct()
    {
        parent::_construct();
       $this->setTemplate('modulename/customer/tab.phtml');
    }
在modulename / customer / tab.phtml

<?php 
  echo $this->getLayout()
            ->createBlock('modulename/adminhtml_modulename_grid')
            ->toHtml();
?>