Magento使用网格创建管理(后端)模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento使用网格创建管理(后端)模块相关的知识,希望对你有一定的参考价值。
If you are creating an admin module for Magento (learn creating admin module in Magento) then you would surely be asked to create grids (eg. for order listing). Creating grids can be somewhat difficult for the novice Magento programmers, but in this tutorial we will create a grid in the admin module in the simplest possible way. It is assumed that you are familiar with creating admin module in Magento.
<?php { public function __construct() { $this->_controller = 'adminhtml_web'; $this->_blockGroup = 'web'; $this->_headerText = Mage::helper('web')->__('Item Manager'); $this->_addButtonLabel = Mage::helper('web')->__('Add Item'); parent::__construct(); } } ... etc
以上是关于Magento使用网格创建管理(后端)模块的主要内容,如果未能解决你的问题,请参考以下文章