How to implement user in multiselect in inline edit

Please tell us how to implement user in multiselect in inline edit
If you have a sample, please.

Hello,
There is no built-in mutiselect inline editor, but you can create a custom inline editor and return any HTML element:
https://docs.dhtmlx.com/gantt/desktop__inline_editing.html#typesofeditors
Here is an example of how it might be implemented:
https://snippet.dhtmlx.com/bfd731f65

If you want to add an entry in the list with users, you need to use the updateCollection command:
https://docs.dhtmlx.com/gantt/api__gantt_updatecollection.html
Here is the snippet that demonstrates how it works:
https://snippet.dhtmlx.com/d7dffec30

Hi?
I tested the sample that you sent and I am having an error in explorer.
Can you check it?

get_value -> selectedOptions

Hello,
Looks like, it happens because Internet Explorer doesn’t support the selectedOptions property:

So, you need to iterate all options manually and check if they are selected. Here is the snippet that should work in IE:
http://snippet.dhtmlx.com/a37f7c4e4