magento edytowalne wartości kolumny siatki nie publikują za pomocą masowania

Chcę edytować wartości produktu gridview za pomocą masowania. tutaj stworzyłem taką kolumnę.

$this->addColumn('fineness',
            array(
                'header'=> Mage::helper('catalog')->__('% Increase'),
                'width' => '80px',
                'index' => 'fineness',
                'type' => 'input',
                'editable' => 'TRUE',


        ));

działa dobrze, ale jak mogę zamieścić tę wartość w masowaniu? tutaj napisałem taką akcję

$this->getMassactionBlock()->addItem('update', array(
             'label'=> Mage::helper('catalog')->__('Bulk Update'),
             'url'  => $this->getUrl('*/*/massUpdate'),
             'confirm' => Mage::helper('catalog')->__('Are you sure?'),

        ));

więc jak mogę uzyskać wartości kolumn w massaction w akcji napisałem tak, ale nie działa

public function massUpdateAction()
    {
        $productIds = $this->getRequest()->getParam('product');
        $increase_fineness = $this->getRequest()->getParam('increase_fineness');
        $fineness = $this->getRequest()->getParam('fineness');
        print_r($fineness);die;
}

questionAnswers(1)

yourAnswerToTheQuestion