Hello,
It’s possible that Popup editable can support Shift enter ?
That is supported if you change the code in webix.editors.popup.linkInput
Add test shift key pressed with code 13
else if(code === 13 && !e.shiftKey)
webix.callEvent(“onEditEnd”, []);
The only way to have popup cell editor in table is to create a customized cell editor, but that really simpler if we can use popup as text editor and that support multiple line.
Regards