I want to edit gridview product values using massaction. here i created a column like this.
$this->addColumn('fineness',
array(
'header'=> Mage::helper('catalog')->__('% Increase'),
'width' => '80px',
'index' => 'fineness',
'type' => 'input',
'editable' => 'TRUE',
));
it is working fine but how can i post these value to massaction? here i wrote action like this
$this->getMassactionBlock()->addItem('update', array(
'label'=> Mage::helper('catalog')->__('Bulk Update'),
'url' => $this->getUrl('*/*/massUpdate'),
'confirm' => Mage::helper('catalog')->__('Are you sure?'),
));
so how can i get column values in massaction.in the action i wrote like this but not working
public function massUpdateAction()
{
$productIds = $this->getRequest()->getParam('product');
$increase_fineness = $this->getRequest()->getParam('increase_fineness');
$fineness = $this->getRequest()->getParam('fineness');
print_r($fineness);die;
}