Approach on changing row color on orders grid in admin
I need to change row color in magento orders grid based on order status. For start I don't want a complex solution with configurable interface. I just want to know where to start. What is the best approach ? ʍǝɥʇɐɯ Full, working solution: Copy js/mage/adminhtml/grid.js to js/colors/adminhtml/grid.js Make the file 666 and the folders (js/colors & js/colors/adminhtml) 777. Edit it and after line 208 (before the line containing }.bind(this) ) add: colorize(); At the end of the file add: function colorize () { $$('td').each(function(macguffin) { if(macguffin.innerHTML.strip()=="Processing")