Vaadin Table Event Hanlding

Hi,

I have a table in vaadin. The table has a few non-editable fields and editable fields. I would like to have the data in non-editable fields updated based on the value modified in the editable fields.

I can refresh the value across the rows for the entire table using an update button and handle it on the ButtonClick event.

However, i would like to handle the table rows updated event driven. I tried value change event handle for both table as well as item. However, it does not seem to fire consistently. Item Click is firing consistently. However, I can only get the target row, but not the origin row which has the modified data.

What options do we have available?

Thanks,

Siva

Hi,
have tried refreshRowCache() ?

https://vaadin.com/api/com/vaadin/ui/Table.html#refreshRowCache–

It seems like it’s the method you are looking for : ) You can include it, for example, into your ValueChangeEvent handler.
Regards,
Anastasia