I’m editing the order grid by adding custom columns like this
$this->addColumn('pagamenti', array(
'header' => 'Paymentsource',
'width'=>'50px',
'align' =>'left',
'type' => 'text',
'renderer' => 'Blablabla_Adminhtml_Block_Sales_Order_Renderer_lol'
));
but every column is positioned on the far right of the table, no matter where I call addColumns.
Is there a way to force the position?
Thanks
You can probably use the
addColumnAfterfunction.