Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
When I do this in dreamweaver , it complains of a syntax error on thee second line below, any ideas? } }); } document.observe("dom:loaded", colorize); – user1227553 Mar 15 '12 at 8:12
don't rely on dreamweaver. just use the code and see if browsers throw some errors or not. – Ovidiu Mar 15 '12 at 20:24

1 Answer

Full, working solution:

Copy js/mage/adminhtml/grid.js to js/colors/adminhtml/grid.js

Make the file 666 and the js/colors and 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") macguffin.parentNode.setStyle({backgroundColor: 'Orange' });
        if(macguffin.innerHTML.strip()=="Pending") macguffin.parentNode.setStyle({backgroundColor: 'Gold', color:'Black' });
        if(macguffin.innerHTML.strip()=="Payment Review") macguffin.parentNode.setStyle({backgroundColor: 'LightPink' });
        if((macguffin.innerHTML.strip()=="On Hold")||(macguffin.innerHTML.strip()=="Payment Review")) macguffin.parentNode.setStyle({backgroundColor: 'HotPink' });
        if(macguffin.innerHTML.strip()=="Suspected Fraud") macguffin.parentNode.setStyle({backgroundColor: 'Red' });
        if((macguffin.innerHTML.strip()=="Closed")||(macguffin.innerHTML.strip()=="Canceled")||(macguffin.innerHTML.strip()=="Cancelled")) macguffin.parentNode.setStyle({backgroundColor: 'LightBlue', fontStyle: 'italic' });
        if(macguffin.innerHTML.strip()=="Complete") macguffin.parentNode.setStyle({backgroundColor: 'Green' });
    }
  });
}
document.observe("dom:loaded", colorize);

Now create or edit the admin local.xml file in app/design/adminhtml/default/default/layout/local.xml

Edit it to include:

<?xml version="1.0"?>
<layout version="0.1.0">
  <default>
    <reference name="head">
        <action method="removeItem"><type>js</type><name>mage/adminhtml/grid.js</name></action>
        <action method="addItem"><type>js</type><name>colors/adminhtml/grid.js</name></action> 
    </reference>
  </default>
</layout>

The orders grid will now be in vibrant colours and you should be able to clearly see what orders need attention.

The colorize() function can be edited to suit your order states and preferred colour scheme.

share|improve this answer
I have removed some comments and put together a fully working solution that does not involve editing of core files, using a local.xml file and copy of the grid.js. With thanks to @Alan Storm – ʍǝɥʇɐɯ Jul 4 '11 at 19:34
Thank mathew and @Alan Storm for a complete solution. – Ovidiu Jul 7 '11 at 7:46
Just one syntex error is there. removing extra "}" placed before "});" – Dolly Mar 8 at 8:57

protected by Community Aug 27 '12 at 3:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.