show启用/禁用网格列表magento上的值

时间:2017-02-24 13:33:50

标签: magento-1.9

在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文件中更改。 谢谢

1 个答案:

答案 0 :(得分:-1)

$this->addColumn('is_active', [
            'header'=> __('status'),
            'align' => 'left',
            'index' => 'is_active',
            'params' => ['id'=>'getId'],
            'type'      => 'options',
            'options'   => array(
                1 => 'enabled',
                0 => 'disabled',
            ),
        ]);