onBeforeEditStart event not firing after clipboard copy/paste

I’ve a datatable where onBeforeEditStart and onAfterEditStop events are attached. also we have enabled clipboard copy/paste feature for multiple cells.

but after pasting the data to cells, the above events are not firing.

can you anyone tell/guide me how can we achieve this?

Clipboard and editing are different features. Please use onPaste event for clipboard. Here’s an example of usage in the related docs chapter.

i mean can i trigger/cascade onBeforeEditStart and onAfterEditStop from onPaste. because i’ve some logic defined in those events. after paste I want those events to be cascaded through. i know i can separate the logic and call them in OnPaste event, but if i can cascade those events like: webix.callEvent or triggerEvent would be a great help.

because my logic is heavily dependent on (state,object) arguments of “onAfterEditStop” event

and i don’t know how to generate object or type of object of the event onAfterEditStop. however, i can generate state argument.