EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: rezzonico on November 05, 2019, 09:27:10 AM



Title: datagrid + color
Post by: rezzonico on November 05, 2019, 09:27:10 AM
Hi all,

in a datagrid the selected row is highlighted in yellow.

How can I highlight the selected row in an other color (for example "blue") ?
How can I disable the highlight ?

Thanks
Miche


Title: Re: datagrid + color
Post by: jarry on November 06, 2019, 06:52:59 PM
Please override the .datagrid-row-over style.

Code:
<style type="text/css">
.datagrid-row-over{
background: blue;
color: #fff;
}
</style>