hjalmers / angular-generic-table

A generic table for Angular 2+. Generic table uses standard markup for tables ie. table, tr and td elements etc. and has support for expanding rows, global search, filters, sorting, pagination, export to CSV, column clicks, custom column rendering, custom export values.
https://hjalmers.github.io/angular-generic-table/
MIT License
105 stars 55 forks source link

Cannot use inlineEdit and render on same field. #317

Open jjguitars opened 3 years ago

jjguitars commented 3 years ago

If I use inlineEdit and render on the same field, I get an error (safe value must use property binding). I am wanting to have a select string list with the inlineEdit, but return a numeric value - eg Ok = 1, canceled = 2, etc.

Also when using inlineEdit, is it possible to get the column objectKey as well as the $event. This means I would know which column has been edited and not have to compare the event.value - newValue and oldValue data to determine which field has been altered. Thank you.