Amit Sharma
Amit Sharma

Reputation: 1988

How to change extjs grid row color

I want to change the color of the row in a extjs-3.1 grid from default to "dark red", When i either hover my mouse on row or i select a row , Please help.

Upvotes: 0

Views: 3247

Answers (2)

Joshua
Joshua

Reputation: 21

.x-grid3-row-selected {    
    background-color:red !important;
}

This will change the selected color to red.

Upvotes: 2

Madhu
Madhu

Reputation: 5756

You can do it by setting the background color of each column's renderer function.

Upvotes: 0

Related Questions