Is possible change the background of 'datatable'?

Hello,
Is possible change the background of ‘datatable’ with an image or a gradient color?

Thanks,
Daniele

Hello,

You, you can change it with CSS by adding a custom style to the datatable configuration - http://webix.com/snippet/fd1d50c7

Is possible to change color only the white space under the rows?

Thanks

Sure, but not that straightforward.

You can set custom background style for the whole datatable and, additionally, set initial (white) background for its columns:

http://webix.com/snippet/016a265f

Thanks!

one last thing,
is possible to colorize the even rows and the odd rows with different colors?

Very helpful,
Thanks

Common css solution with nth-child css selector can be used here.

  .webix_dtable .webix_column .webix_cell:nth-child(2n+1){
       background-color: #ffa;
  }

http://webix.com/snippet/d6cc6787

Very helpful
Thanks!

Hello, I have another problem, the even row selection color is equal to color of row, how I can resolve this with the classic row selection color?

Thanks!

You can restore it back with a bit of css

http://webix.com/snippet/a33152a5