Suuggest grid with dataFeed in combo editor returns id but not value

Hi
I have a datatable with a combo editor that has a gridsuggest with dataFeed. Is there any way return from editor value not id??

see for review https://snippet.webix.com/9rdrupu1

Many thanks in advance.

Hello Victoria,

Unfortunately, the data which is parsed directly from the editor (suggest) to the cell can correspond only to id of the option.
If there is a collection in the column, id is still a key attribute, but the value of an item (from the collection) is rendered in a cell.

As the dataFeed is supported only by data components (grid, tree, etc.), there is no direct solution for your requirements.

But as a solution, it is possible to use custom logic:

  • use collection with some default set of options (which will be rendered initially in the datatable)
  • use suggest with dataFeed
  • once editing is performed, add missing items to the collection

Something like Code Snippet