如何在Magento的管理表单和网格中更改日期格式?

时间:2014-06-03 09:32:20

标签: magento admin

如何在Magento的管理表单和网格中更改日期格式?

目前在我的系统中,它以 2014年6月28日等格式显示,但在其他系统中,它显示为 2014/06/28

有人知道如何更改管理面板吗?

欢迎任何建议。

1 个答案:

答案 0 :(得分:5)

要在Admin Grid中获取Date列,请使用此代码

$this->addColumn('Date Column', array(

    'header'    => Mage::helper('yourmodule')->__('Date Column'),
    'align'     => 'left',
    'width'     => '120px',
    'type'      => 'date', // specify this column is date type
    'format'    => 'y/M/d', // Format of the column 2014/06/03
    'index'     => 'date_column',
));

获取管理员的日期选择器
$this->addColumn('updated_at', array(

    'header'    => Mage::helper('yourmodule')->__('Updated At'),
    'align'     => 'left',
    'width'     => '120px',
    'type'      => 'date',
    'format'    => 'y/M/d',
    'index'     => 'updated_at',
));

您可以更改格式,如您想要参考this