在Magento 1.9中,我创建了模块,在管理网格中,我希望将值0/1显示为启用/禁用标题。但它没有用。这是我正在使用的脚本。
$this->addColumn('status',
array(
'header'=> Mage::helper('catalog')->__('Status'),
'align' =>'right',
'width' => '50px',
'index' => 'status',
'options' => array('1'=>'Enable','0'=>'Disable')
)
);
请有人帮我,我需要在Grid.php文件中更改。 谢谢
答案 0 :(得分:-1)
$this->addColumn('is_active', [
'header'=> __('status'),
'align' => 'left',
'index' => 'is_active',
'params' => ['id'=>'getId'],
'type' => 'options',
'options' => array(
1 => 'enabled',
0 => 'disabled',
),
]);