我想在标签部分下的自定义模块中创建一个网格,就像customer ->wish list
标签下显示的一样。
答案 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();
?>