Custom popups with multi components inside

Hello, i made custom editor for datatable based on builtin one (popup), and popup instance also,How to prevent starting event “EditEnd” when i have choose date, i need just change date on datepicker…
Here is the snippet:
http://webix.com/snippet/fd249c07

Hello,

It’s normal behavior for popup editors. Any click outside the editor or its popup stops editing of the master component (saves editor value and closes the editor). That’s why the popup with a datepicker closes - the click target is outside it.

Unfortunately, in such case I can only suggest you using the calendar instead of the datePicker.

Thx for the answer!