datatable richselect editor

Is there anyway to change the font size and color on richselect editor popup?

Hello @sri,
It can be done via CSS styling. As a solution, you can set any CSS class to the global editors popup object:

  webix.editors.$popup.richselect = {
    view:"suggest",
    body:{
      view:"list", 
      select:true, 
      css:"custom",
    }
  };

Please check the snippet:
https://snippet.webix.com/grw6gu68

Or you can add CSS for a specific editor in config initialization:

{
...
editor:"richselect",
suggest: {
view:"suggest",
body: {
css:"custom",
...
}

Please take a look at the example:
https://snippet.webix.com/ium4g3xa

Hey @annazankevich, does webix spreadsheet support dependent dropdown list ?