I have table field with editable column. When I change value in one cell I need to calculate value in other fields. I would like to know, how to detect when value in cell has change. I couldn't find any hooks that will tell me that value in cell has change.
I found :
@Override
public void fireTableEventInternal(final TableEvent e) {
if (e.getType() == TableEvent.TYPE_ROWS_UPDATED) {
AbstractProductsTableField.this.execPriceValueChange();
} else {
super.fireTableEventInternal(e);
}
}
but I don't think this is a way to go.