Ng Smart Datatable has some output events and one of these is btnAddClickEvent.
btnAddClickEvent is emit when ActionType.Add clicked.
This event can be listened like that
(btnAddClickEvent)="btnAddClick()"
on .ts file
btnAddClick() {
console.log('BtnAdd Clicked');
}