-
- Thomas Hygum

-
Total Posts: 36
Joined: 2009-02-25
|
Nice, solved myself! It is where the columns are added. I added the “type” parameter:
$this->addColumn(’news_from_date’,
array(
‘header’ => Mage::helper(’catalog’)->__(’News from’),
‘width’ => ‘40px’,
‘index’ => ‘news_from_date’,
‘type’ => ‘date’,
));
$this->addColumn(’news_to_date’,
array(
‘header’=> Mage::helper(’catalog’)->__(’News to’),
‘width’ => ‘40px’,
‘index’ => ‘news_to_date’,
‘type’ => ‘date’,
));
|