Hi,
is there possibility to get physical row index of a changed cell when filtering is used?
Eg. http://handsontable.github.io/ngHandsontable/demo/index.html#/PRO-filtering-external-inputs
with modified settings object as:
this.settings = {
rowHeaders: true,
colHeaders: true,
dropdownMenu: true,
filters: true,
afterChange: function(changes, source){
console.log(changes);
}
};
Then if you filter by first column (A) with is_equal_to = 5, you will see only one row (Macy Kowalski) as expected, then when you modify something afterChange
will output change at row with index 0 (which also makes sense since there is only one row visible) - but how to get information about exact physical row that was changed (and update corresponding row/value in the database after all)?