Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2048
igGrid Selection Hover style problem on IE9
posted

Hi,

I tried to solve this issue in different ways (editing .css) but till now I haven't found a solution.

I set a GridModel with selection feature:
            GridSelection selection = new GridSelection();
            selection.Mode = SelectionMode.Row;
            selection.Activation = true;
            gridModel.Features.Add(selection);

Selection works correctly on firefox:

While it does not work correctly on IE9:

Problem is simple: if a row is selected I can't see background selection when it is hovered. It seems like IE9 gives more priority to hover instead of selection. If you look at the IE9 picture you can see that the row is ok, but text is obviously white, and the white background of hover behavior ocults it.
Note thatif I select one row and I move the mouse pointer away from that row, I can see it perfectly selected...

Has anyone ever had this problem?

Thanks

Flavio