我想用massaction编辑gridview的产品价值。 在这里,我创建了一列这样的。
$this->addColumn('fineness',
array(
'header'=> Mage::helper('catalog')->__('% Increase'),
'width' => '80px',
'index' => 'fineness',
'type' => 'input',
'editable' => 'TRUE',
));
它工作正常,但我怎么能发布这些价值massaction? 在这里,我写行动这样
$this->getMassactionBlock()->addItem('update', array(
'label'=> Mage::helper('catalog')->__('Bulk Update'),
'url' => $this->getUrl('*/*/massUpdate'),
'confirm' => Mage::helper('catalog')->__('Are you sure?'),
));
所以,我怎么能得到massaction.in我写了这样的作用,但不能工作列值
public function massUpdateAction()
{
$productIds = $this->getRequest()->getParam('product');
$increase_fineness = $this->getRequest()->getParam('increase_fineness');
$fineness = $this->getRequest()->getParam('fineness');
print_r($fineness);die;
}