paste into datatable column when using Date editor

I’m trying to figure out how to paste a date into a datatable cell when I have the date editor active. See snippet

https://webix.com/snippet/f3661b2c

Thanks,
Xay

Unfortunately, clipboard won’t work per this requirements due to the essential logic of popup editors, which get the focus and block onPaste event.

The most recommended solution here is to set editaction:“dblclick” to avoid such conflict.

Another possibility is to set additional handlers to ctrl+c/v hotkeys and provide your own copying/pasting logic. Here’s a draft of such solution:
https://webix.com/snippet/edfeeb0b