所以我试图在我的自定义模块中显示一个网格(暂时显示任何内容,一旦它正在工作,我会担心它的集合!)。
问题是我的网格小部件类的_prepareCollection()和/或_prepareColumns()方法似乎永远不会被调用,并且网格从不显示(按钮和标题文本也没有)。 (Magento管理页眉和页脚和导航显示正确。中间只是空白!)
这是我到目前为止所做的:
应用程序/代码/本地/ myNameSpace对象/ Mymodule中的/ etc / config.xml中
<?xml version="1.0" ?>
<config>
<modules>
<MyNamespace_Mymodule>
<version>0.0.1</version>
</MyNamespace_Mymodule>
</modules>
<!-- Define frontend and backend routers -->
<admin>
<routers>
<mymodule>
<use>admin</use>
<args>
<module>MyNamespace_Mymodule</module>
<frontName>mymodule</frontName>
</args>
</mymodule>
</routers>
</admin>
<!-- /Define frontend and backend routers -->
<global>
<helpers>
<mymodule>
<class>MyNamespace_Mymodule_Helper</class>
</mymodule>
</helpers>
<blocks>
<mymodule>
<class>MyNamespace_Mymodule_Block</class>
</mymodule>
</blocks>
</global>
<adminhtml>
<menu>
<mymodule module="mymodule">
<title>My Module</title>
<sort_order>80</sort_order>
<children>
<items module="mymodule">
<title>Manage My Module</title>
<sort_order>0</sort_order>
<action>mymodule/adminhtml_mymodule</action>
</items>
</children>
</mymodule>
</menu>
<!-- define layout updates -->
<layout>
<updates>
<mymodule>
<file>mymodule.xml</file>
</mymodule>
</updates>
</layout>
<!-- /define layout updates -->
</adminhtml>
</config>
然后我的控制器:
应用程序/代码/本地/ myNameSpace对象/ Mymodule中/控制器/ Adminhtml / MymoduleController.php
<?php
class MyNamespace_Mymodule_Adminhtml_MymoduleController extends Mage_Adminhtml_Controller_action
{
public function indexAction() {
$this->getLayout()->createBlock('mymodule/adminhtml_mymodule');
$this->loadLayout();
$this->renderLayout();
}
}
然后在我的网格容器中:
应用程序/代码/本地/ myNameSpace对象/ Mymodule中/砌块/ Adminhtml / Mymodule.php
<?php
class MyNamespace_Mymodule_Block_Adminhtml_Mymodule extends Mage_Adminhtml_Block_Widget_Grid_Container
{
public function __construct()
{
echo __METHOD__ . " (Line #" . __LINE__ . ")<br/>";
parent::__construct();
$this->_controller = 'adminhtml_mymodule';
$this->_blockGroup = 'mymodule';
$this->_headerText = Mage::helper('mymodule')->__('my header text'); // this is not rendered
$this->_addButtonLabel = Mage::helper('mymodule')->__('my button text'); // this is not rendered
}
protected function _prepareLayout()
{
$this->setChild( 'grid',
$this->getLayout()->createBlock( $this->_blockGroup.'/' . $this->_controller . '_grid',
$this->_controller . '.grid')->setSaveParametersInSession(true) );
return parent::_prepareLayout();
}
}
然后在我的网格小部件中:
应用程序/代码/本地/ myNameSpace对象/ Mymodule中/砌块/ Adminhtml / Mymodule中/ Grid.php
<?php
class MyNamespace_Mymodule_Block_Adminhtml_Mymodule_Grid extends Mage_Adminhtml_Block_Widget_Grid
{
public function __construct()
{
parent::__construct();
$this->setId('mymoduleGrid');
$this->setDefaultSort('id');
$this->setDefaultDir('ASC');
$this->setSaveParametersInSession(true);
}
protected function _prepareCollection()
{
echo __METHOD__ . " (Line #" . __LINE__ . ")<br/>"; // This is never called
$collection = Mage::getModel('catalog/product')->getCollection(); // just a temp collection for the time being
$this->setCollection($collection);
return parent::_prepareCollection();
}
protected function _prepareColumns()
{
echo __METHOD__ . " (Line #" . __LINE__ . ")<br/>"; // This is never called
$this->addColumn('id', array(
'header' => Mage::helper('mymodule')->__('ID'),
'align' =>'right',
'width' => '10px',
'index' => 'id',
));
return parent::_prepareColumns();
}
}
最后我的布局xml:
应用程序/设计/ adminhtml /默认/默认/布局/ mymodule.xml
<?xml version="1.0"?>
<layout version="0.1.0">
<adminhtml_mymodule_index>
<reference name="content">
<block type="mymodule/adminhtml_mymodule" name="mymodule" />
</reference>
</adminhtml_mymodule_index>
</layout>
日志中没有显示任何错误,我现在有点难过,其他SO答案似乎不合适。
任何人都明白为什么我的网格(即使是空的网格)没有显示?
谢谢。
编辑注意到某些类的错误情况(Mynamespace应该是MyNamespace)。改变它们但没有区别
答案 0 :(得分:10)
这是布局的句柄标记的问题。
应该是:
<?xml version="1.0"?>
<layout version="0.1.0">
<mymodule_adminhtml_mymodule_index>
<reference name="content">
<block type="mymodule/adminhtml_mymodule" name="mymodule" />
</reference>
</mymodule_adminhtml_mymodule_index>
</layout>
有关说明和一些提示,您可以阅读:
My layout isn't loading in my Magento admin view
= UPDATE =
您也无需按照$this->getLayout()->createBlock('mymodule/adminhtml_mymodule');
mymodule.xml
OR
您可以通过将控制器的操作更改为:
来省略mymodule.xml
(无需调用它)
public function indexAction() {
$this->loadLayout();
$myblock = $this->getLayout()->createBlock('mymodule/adminhtml_mymodule');
$this->_addContent($myblock);
$this->renderLayout();
}
见定义:
Mage_Adminhtml_Controller_Action
protected function _addContent(Mage_Core_Block_Abstract $block)
{
$this->getLayout()->getBlock('content')->append($block);
return $this;
}
上面的代码与mymodule.xml
执行相同操作,将'mymodule/adminhtml_mymodule'
附加到content
这是你的全部选择!
答案 1 :(得分:0)
您能否确保正确调用您的索引操作?
当你这样做时:
<?php
class Mynamespace_Mymodule_Adminhtml_MymoduleController extends Mage_Adminhtml_Controller_action
{
public function indexAction() {
echo "im here";exit; //<----does this display?
$this->getLayout()->createBlock('mymodule/adminhtml_mymodule');
$this->loadLayout();
$this->renderLayout();
}
}
然后最后重要的是首先加载你的布局。所以在我的意见中将你的索引动作改为:
<?php
class Mynamespace_Mymodule_Adminhtml_MymoduleController extends Mage_Adminhtml_Controller_action
{
public function indexAction() {
$this->loadLayout(); // <---- This first
$this->getLayout()->createBlock('mymodule/adminhtml_mymodule');// <---- then this
$this->renderLayout();
}
}
答案 2 :(得分:0)
我知道这与答案并不严格相关,但是希望这可以对某人有所帮助。
以防万一有人在读本,完全丧失了希望-确保app/design/adminhtml/default/default/layout
中有一个布局文件。
我的本地自定义网格没有问题,但是当我迁移它时,它显示了上面的症状(黑屏等)
这是由于我没有复制该文件。