When change the row height from 20 to 100 or other values, the background color of selected row is non-uniform. Please take a look at the following two pictures. How to make the color uniform?
Add the next css rule to the page
div.gridbox_dhx_skyblue table.obj.row20px tr.rowselected td{
background-image:url(../imgs/sky_blue_sel2.png);
}
Normally, when you are using multiline mode ( where height of row can differ from default one ) grid uses second background automatically. But if you have changed row’s height in css - you need to add new background rule into css as well.
Thanks for the pointer, that works!