我的自定义模块网格中有以下代码。
$this->addColumn('action',
array(
'header' => Mage::helper('module')->__('Action'),
'width' => '100',
'type' => 'action',
'getter' => 'getId',
'actions' => array(
array(
'caption' => Mage::helper('module')->__('Edit'),
'url' => array('base'=> '*/*/edit'),
'field' => 'id',
)
),
'filter' => false,
'sortable' => false,
'index' => 'stores',
'is_system' => true,
));
我想知道有没有办法在网格中制作新的吸气剂。我这样做的目的是在 url 中传递额外的参数。
通过使用它,我得到以下编辑网址
http://domain.com/index.php/module/adminhtml_module/edit/id/5/key/a19618bbaa3ee98ed395bc2fa552de35/
如果将另一个 getter 附加到 url,例如 'getter' => 'getStoreId',
比我的网址应该是这样的:
任何人都可以指导我,我该怎么做。?
我尝试使用以下代码,但它不起作用。
$this->addColumn('action',
array(
'header' => Mage::helper('module')->__('Action'),
'width' => '100',
'type' => 'action',
'getter' => array('getId','getStoreId'),
'actions' => array(
array(
'caption' => Mage::helper('module')->__('Edit'),
'url' => array('base'=> '*/*/edit'),
'field' => array('id',store_id),
)
),
'filter' => false,
'sortable' => false,
'index' => 'stores',
'is_system' => true,
));