Mage/Adminhtml/Widget/Grid/Column/Renderer/Concat.php -- can someone please provide an example of its usage? For instance, can it be used in place of:
$this->addColumn('order_item', array(
'header'=> $this->__('Order # (Item #)'),
'sortable'=> true,
'index'=> 'order_item',
'filter_index'=> "CONCAT(orders.increment_id, ' (', main_table.item_id, ')')",
'width'=> '140px',
));