I’m using angular wrapper for handson table, and I’m trying to add edit and delete button at the end of every row in table.
On edit button click I’m showing modal popup form with data gathered from row:
…
,afterOnCellMouseDown: (event, coords, TD) => {
const hotInstance = this.hotRegisterer.getInstance(this.instance);
hotInstance.getSourceDataAtRow(TD.row);
Works perfectly fine but still having problem with sorted table. I’m fully aware of the problem with logical and physical index.
I’m just asking for suggestion to find the proper way to implement something like this.
Thank you