GWT CellTable に 5 行あります。テーブルには、id、value の 2 つの列があります。特定のIDの値を定期的に更新する必要があるgwtタイマーがあります。したがって、タイマーの実装では、次のように呼び出します。
....
double value = calcValueForId(id);
update(id, value);
.....
private void update(int id, double value) {
// here i have access to cell table instance and data provider (AsyncDataProvider)
// how to access row with given id and update its value column
}
ありがとう。