I have a GWT Celltable, wich is updated from database. The new values from database should be added only in new column without to update the other columns. So, after each refresh you can see the new state in new column and compare it with old state.
example of one row (refresh in 10 minutes - so after refresh you have one column more):
data_with_timestamp_01:00
after refresh:
data_with_timestamp_01:00 data_with_timestamp_01:10
after next refresh:
data_with_timestamp_01:00 data_with_timestamp_01:10 data_with_timestamp_01:20
etc.
To add the new column with new data is not the problem. The problem is, that after refresh ListDataProvider change all columns data in the table and not only the last one.
Can sb help me?