我为特殊用途的客户模块创建了新的 magento 网格。
因为有一列usertype
它的值为0,1,2。
它将在客户网格页面中显示为 0,1,2。
但我需要显示值是否为,
0 -> Inactive
1 -> Activated
2 -> Baned
我怎样才能做到这一点?
这是我在 _prepareColumns() 中的代码 grid.php:
$this->addColumn('usertype', array(
'header' => Mage::helper('customer')->__('Usertype'),
'width' => '150',
'index' => 'usertype'
));
如果这在magento中是可能的。