The sales/order grid uses the table sales_flat_order_grid to display its information, this is done to list all orders without adding joins and speeding-up the loading.
In the previous articles (1, 2) you might find the way how to add custom column/ attribute to adminhtml (orders, customers, ect) grid. But this is ...
If in your _prepareCollection method I print the query via: echo $collection-> getSelect()->assemble();. I get this: SELECT `main_table`.
Does your Magento order grid have all of the fields you need? Adding or removing columns is fairly simple. Let's explore how. Here we will ...
Ok so I got it working by altering my _prepareCollection() method: protected function _prepareCollection(){ $collection ...
Solved: I'm gonna add the column in my order -> shipment grid! I want to bring the "title" on 'sales_flat_shipment_track' table And it.
You're best using something like BL Custom Grid - although its unmaintained it works on all versions of Magento 1 (I've tested 1.6.x-1.9.x).
Adding a Custom Column in the Admin Grid in Magento 1.9 · 1. Add a node in our config.xml file (just under the root 'config' node) that we created ...
Good question. I had a similiar problem. I solved it by using a custom renderer for my column. First add your Sales Order Grid block ...
The best way to add a new column to the orders grid is to use event observers. In our case, we are going to use event ' ...