按照本指南Custom Module with Custom Database Table
,我是magento的新手我已将已存在的模块实现到后端adminhtml。我正在从数据库中获取内容并在adminhtml页面上播放。一切正常,除了我在adminhtml上获得两次网格。我两次得到同一个网格。我已经看了2个小时的代码无法搞清楚。如果有人知道如何解决这个问题,我会非常愚蠢。欢呼声
那是我的grid.php中的代码
<?php
class Ecom_Pricenotify_Block_Adminhtml_Pricenotify_Grid extends Mage_Adminhtml_Block_Widget_Grid{
public function __construct()
{
parent::__construct();
$this->setId('pricenotifyGrid');
// This is the primary key of the database
$this->setDefaultSort('pricenotify_id');
$this->setDefaultDir('ASC');
$this->setSaveParametersInSession(true);
}
protected function _prepareCollection()
{
$collection = Mage::getModel('pricenotify/pricenotify')->getCollection();
$this->setCollection($collection);
return parent::_prepareCollection();
}
protected function _prepareColumns()
{
$this->addColumn('pricenotify_id', array(
'header' => Mage::helper('pricenotify')->__('Notification ID'),
'align' =>'left',
'width' => '50px',
'index' => 'pricenotify_id',
));
$this->addColumn('prod_id', array(
'header' => Mage::helper('pricenotify')->__('Product ID'),
'align' =>'left',
'width' => '50px',
'index' => 'prod_id',
));
$this->addColumn('prod_price', array(
'header' => Mage::helper('pricenotify')->__('Product Price'),
'align' =>'left',
'width' => '50px',
'index' => 'prod_price',
));
$this->addColumn('user_price', array(
'header' => Mage::helper('pricenotify')->__('User Price'),
'align' =>'left',
'width' => '50px',
'index' => 'user_price',
));
$this->addColumn('email', array(
'header' => Mage::helper('pricenotify')->__('E-Mail Address'),
'align' =>'left',
'width' => '150px',
'index' => 'email',
));
$this->addColumn('created_time', array(
'header' => Mage::helper('pricenotify')->__('Creation Time'),
'align' => 'left',
'width' => '120px',
'type' => 'date',
'default' => '--',
'index' => 'created_time',
));
$this->addColumn('status', array(
'header' => Mage::helper('pricenotify')->__('Status'),
'align' => 'left',
'width' => '80px',
'index' => 'status',
'type' => 'options',
'options' => array(
'success' => 'Inactive',
'pending' => 'Active',
),
));
return parent::_prepareColumns();
}
public function getRowUrl($row)
{
return $this->getUrl('*/*/edit', array('id' => $row->getId()));
}}
此indexAction函数来自控制器
public function indexAction() {
$this->_initAction();
$this->_addContent($this->getLayout()->createBlock('pricenotify/adminhtml_pricenotify'));
$this->renderLayout();
}
答案 0 :(得分:6)
也许您已将其插入布局中,请检查
中的pricenotify.xmladminhtml&GT;默认&GT;默认&GT;布局
如:
<pricenotify_adminhtml_manager_pricenotify>
<block type="core/text_list" name="root" output="toHtml">
<block type="pricenotify/adminhtml_pricenotify_grid" name="pricenotify.grid"/>
</block>
</pricenotify_adminhtml_manager_pricenotify>
删除此块或注释添加内容的行。
答案 1 :(得分:3)
我修好了。我只需要发表评论
//$this->_addContent($this->getLayout()->createBlock('pricenotify/adminhtml_pricenotify'));
来自indexAction的我想我加载了两次。
答案 2 :(得分:2)
确保网格块尚未加载到相应的layout.xml文件中。
答案 3 :(得分:0)
我遇到了同样的问题,但在我的情况下,这是由于$this->setId('messages');
行(在你的Grid.php构造中)。因为magento在其网格页面中已经有相同的<div id="messages"></div>
(用于显示通知),因此我的网格内容被加载到此网格内。标签因此显示网格两次。所以吸取的教训是在设置你的身份时不要给出通用名称。在Grid.php中,它可能已存在于网格页面中。
答案 4 :(得分:0)
在我的情况下,它发生在Edit / Form上,我在Adminhtml控制器上无意中重复了renderLayout()。
$this->renderLayout();