カスタム モジュール グリッドに次のコードがあります。
$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 に渡すことです。
これを使用して、次の編集URLを取得しています
http://domain.com/index.php/module/adminhtml_module/edit/id/5/key/a19618bbaa3ee98ed395bc2fa552de35/
'getter' => 'getStoreId' のように別のゲッターを URL に追加する場合、
私のURLよりも次のようにする必要があります:
どうすればそれを行うことができますか?
次のコードを使用しようとしましたが、うまくいきませんでした。
$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,
));