Datatable multi select column

How can I specify the options separator (changing from ‘,’ to ‘;’) in a datatable column?

See this snippet as an example:

https://snippet.webix.com/ibh5r3uj

Can this be done globally?

Also, in the same example provided, one of the options in the data does not exist in the column definition (4444). Is it possible for the column to display the id of the missing value instead of not showing anything? We are dealing with data that might not all be clean…

Thanks!

Hello!

Separator is a property of the Multisuggest view. So you need to add it within the suggest object:

{ 
    editor:"multiselect",
    options:[...],
    suggest:{ view:"multisuggest", separator: ";"  }
}

Also, to make values visible in a cell, you should add the optionslist property to the related column:

{  editor:"multiselect",  optionslist:";" }

Please check the sample: https://snippet.webix.com/z4ztg4l7

Also, in the same example provided, one of the options in the data does not exist in the column definition
You can use function template.