Datatable cell editor suggest

Suppose I create a datatable with a column that has a text editor with an suggest control. When initialized through the “columns” property that creates the list of values for the suggest control, which will then be the same for every row in the table. But I have a use case for dynamic (row-specific) lists of values (i.e. the list is to be determined programmatically for every row). What is the recommended way to achieve this?

Hi,

Reloading options will affect the entire column, so the common solution is to filter the options depending on the row. An extended example and the explanation are provided below:

http://forum.webix.com/discussion/comment/9447/#Comment_9447

Thank you Listopad, but that won’t work for my use cases because the lists of values for each row are totally unrelated. I’ll implement a custom editor with a popup instead.