purecloudlabs / fixtable-angular

Angular wrapper for Fixtable grid
MIT License
3 stars 3 forks source link

Support row click action #29

Open hornetnz opened 8 years ago

hornetnz commented 8 years ago

It'd be nice to set a row click function in the config. In my case, row selection isn't needed, but doing something on a row click is. Currently getting around this via watching fixtableSelectRow.

$scope.$on('fixtableSelectRow', function (eventIgnored: ng.IAngularEvent, row: ContactModel) { // do something });