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've the following viewconfig applied to the grid panel. It is supposed to change the row colour based on a datavalue, but the changes are not visible on the view.

.changed_colour {
    background-color: #FFCC00
}

viewConfig: {
    //Return CSS class to apply to rows depending upon data values
    getRowClass: function (row, index) {
        var data = row.data;
        return data.NoteType === 'PRIVATE' ? 'changed_colour' : ''; 
    }
}

I notice the style being applied for the row in Firebug:

<tr class="x-grid-row changed_colour"> 

.x-grid-row .x-grid-cell {
    background-color: white;
    border-color: #FAFAFA #EDEDED #EDEDED;
    border-right: 0 solid #EDEDED;
    border-style: solid;
    border-width: 1px 0;
    font: 11px tahoma,arial,verdana,sans-serif;
}

The above style snippet belongs to Extjs. Can anybody suggest a solution to this?

Thanks

share|improve this question

1 Answer

up vote 3 down vote accepted

This is because the color is set on the grid cell. You can see it in Firebug or Chrome Developer Tools. To make it work, change your style to:

.changed_colour .x-grid-cell {
    background-color: #FFCC00
}
share|improve this answer
that worked. Thanks :) – Deepak Marur Mar 27 '12 at 8:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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