Bug with Datatable, custom edit action, edit row and date fields

Hi,
…took me a moment, but there is a bug when using custom edit action and edit row with date fields, you can not edit/pick date for the first date field in this case anymore:
https://snippet.webix.com/052nf3np

I have a work around for me ( no custom action), just in case anyone else runs into this…
Frank

Hello,

In fact, it is not a bug, however unexpected it may be. For editors of the same type Datatable shares the same suggest object (calendar, list. etc) in order to reuse the same view instances. That’s why when you call the editRow() method, only one calendar opens.

You can overcome it by defining separate suggests for each column:

{ id:"mastDate1", editor:"date", suggest:{  type:"calendar" }},
{ id:"mastDate2", editor:"date",  suggest:{ type:"calendar" }}

Check the following snippet, please: https://snippet.webix.com/izleni20

…thanks for the suggestion, Helga, yes, that works, also for me using “click” edit action also worked out in the end fine…