-
- epvicky

-
Total Posts: 57
Joined: 2011-07-28
|
hey, I found a solution for this error,
add a ‘filter_index’=>’main_table.status’, in grid.php file under protected function _prepareColumns() of
$this->addColumn(’status’, array(
‘header’ => Mage::helper(’sales’)->__(’Status’),
‘index’ => ‘status’,
‘type’ => ‘options’,
‘width’ => ‘70px’,
‘filter_index’=>’main_table.status’,
‘options’ => Mage::getSingleton(’sales/order_config’)->getStatuses(),
));
|