在Magento Admin Grid中
在Magento Admin Grid中,我们可以根据数据的数据类型更改列的类型,也可以在Magento中使用其他类型的列类型
$this->addColumn('name', array(
'header' => Mage::helper('yourmodule')->__('Name'),
'align' =>'right',
'width' => '50px',
'type' => 'date',
'index' => 'name',
));
您可以通过打开Grid.php来更改管理网格的列类型
path:namespace \ modulename \ Block \ Adminhtml \ modulename \ Grid.php
在这个文件中只需找到函数_prepareColumns(),然后在那里定义你的列
$this->addColumn('name',array('header'=>'Mage::helper('yourmodule')->__('Name'),'type'=> 'date','index' => 'name'));
您可以通过更改数组元素“type”来更改列类型。
如果你想更改日期,只需更改数组
'type'=>'date'
如果你想改变日期时间,只需更改数组
'type'=>'datetime'
Magento Admin Grid中有各种列类型可用如下
date
datetime
number
currency
price
country
concat
action
options
checkbox
massaction
radio
input
select
text
store store
wrapline
theme