我有一个自定义网格,类似于“目录菜单”中的“管理产品”网格。
我需要获取每个实体项目的相应操作链接。我怎么做?
我的自定义网格在类中Mynamespace_Mymodule_Block_Adminhtml_MyblockGroup_Grid
使用_prepareColumns
action列的函数声明,如下所示
$this->addColumn('action',
array(
'header' => Mage::helper('catalog')->__('Action'),
'width' => '50px',
'type' => 'action',
'getter' => 'getId',
'actions' => array(
array(
'caption' => Mage::helper('catalog')->__('Edit'),
'url' => array(
'base'=>'*/*/edit',
'params'=>array('store'=>$this->getRequest()->getParam('store'))
),
'field' => 'id'
)
),
'filter' => false,
'sortable' => false,
'index' => 'stores',
));
到目前为止,此操作获得的链接是'_baseUrl/adminfrontNameforMyModule/controller_action/edit/id/entity_id'
。
我认为,如果此操作获得了指向的链接,'_baseUrl/admin/catalog_product/edit/id/entity_id'
那么我的问题就可以解决。
谁能帮我这个?