I have attempted to address the issue, but I am struggling to highlight a row on click event.
<ng2-smart-table [settings]="settingsPatient" [source]="sourcePatient" (userRowSelect)="patientStudy($event)" (deleteConfirm)="onDeleteConfirm($event)">""
</ng2-smart-table>
I am working with Angular 7 and when I attempt to click on a row in ng2-smart-table, the row does not get highlighted. For example, the color of the row does not change when I click on it.
This is the function I am using for the row click event - (userRowSelect)="patientStudy($event)".