Highlight Datagrid row with colour or some other way.

0
Hi, I want to highlight datagrid row which has been selected. Default grey color confuses user as which row has been selected. Can you please suggest me the possible way to proceed ..? Thanks in Advance.
asked
1 answers
1

You can add the following CSS to overwrite the Mendix defaults
(this takes effect in all datagrids)

.mx-datagrid tr.selected td {
  background-color: red;
}

 

answered