Datatable edition: popup support Shift Enter for multiple line (textarea component)

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

Hi EricR,

We will consider adding the “shift+enter” support for textarea in the popup editor in the next update. It sounds like a good idea.

Hello Helga.
Thanks.