Datatable: copy (in clipboard) not working when cell was edited

Hello,

I have a editable datatable when the user enter a data en press enter he quit the edition. Now if he press CTRL-C the data is not copied in clipboard.

See example: http://webix.com/snippet/37d43b2b
Double click to edit the cell (e.g cell in column 15.32)
Enter: 2
Press enter
press CTRL-C
→ data is not copied

Regards,

I can confirm the issue.

As quick workaround, you can add onAfterEditStop handler, like in the next snippet

http://webix.com/snippet/89c223ba

         on:{
           onAfterEditStop:function(){
             webix.delay(function(){
             	this.callEvent("onSelectChange", []);
             }, this);
           }
         },

Thanks a lot.
That was really annoying.