Styling rows in datatable

Hi,

Styling rows dynamical don’t work on all skins. How can I make it work?

http://webix.com/snippet/2f3f7e59

/Ken

You can use “!important”

        .c2{
            background: yellow !important;
            color:black;
        }

http://webix.com/snippet/d0528a23

or a more complex css rules

.webix_column div.c2{
            background: yellow;
            color:black;
        }

http://webix.com/snippet/843ffd5a