ggmod / angular-2-data-table

An Angular 2 data table, with pagination, sorting, expandable rows, row selection etc.
69 stars 136 forks source link

Fixes for Row Click and Row Double click #45

Closed aliasgerr closed 6 years ago

aliasgerr commented 6 years ago
  1. Emitting row click and row double click events from row component up to table component. Earlier rowClick and rowDoubleClick methods were called directly from row component template. These methods were private and hence throw errors when compiling for aot.

  2. changed private _this to get _this() so it may be referenced/passed it emitters safely.