I am designing an admin module in Magento 1.4.2. I am developing a grid layout displaying the product details (product name, SKU, price, special price, qty) I displayed all the columns. I cannot figure out how to display the special price in one column. I cannot retrieve the special price. Help me to solve this.
I used this code for getting the price.
$collection->joinAttribute('price', 'catalog_product/price', 'entity_id', null, 'left', $store->getId());
This code I used for adding a column for price.
$this->addColumn('price', array(
'header' => Mage::helper('catalog')->__('Price'),
'type' => 'number',
'width' => '1',
'currency_code' =(string)Mage::getStoreConfig(Mage_Directory_Model_Currency::XML_PATH_CURRENCY_BASE),
'index' => 'price',
'editable' =>true
));
But I cannot do the same for special price.
and then add this: