I have a angular-mdl table http://mseemann.io/angular2-mdl/table that I'm loading data to from an ajax call. I'd like to allow the user to click on a row and react to that event, but I can't figure out how to determine which row they clicked on (using either the data from the row or an index).
HTML:
<mdl-table [table-model]="tableModel" (click)="WhatToDoHere()" ></mdl-table>