Dynamic editor combo cllection replace and save the previous row value

Hello i ahve datatable with type and value columns. Value is combo list which depends on type but when i dynamically change the options list for this column by type all other rows affected too. Is there a way to change combo options only for specific row, or not affect other rows ? Code Snippet

Hello @roma ,

The collection in the column provides both editor options and values which will be rendered in cells.
If the collection was parsed with the new options, the column cells may lose the rendered value if there is no associated value anymore.
To save the different options for the different rows, you could pre-load all needed options in the collection and filter it depending on, for example, the type before the editing start.
Check the example: Code Snippet .

Thanks works perfect!