Link

Ng Smart Datatable has some output events and one of these is btnEditClickEvent.

btnEditClickEvent is emit item when ActionType.Edit clicked.

This event can be listened like that

(btnEditClickEvent)="btnEditClick($event)"

on .ts file

btnEditClick(item: any) {
    console.log(`Edit Click : ${JSON.stringify(item)}`);
}