我在 GWT CellTable 中有 5 行。该表有 2 列 id、value。我有 gwt 计时器,它必须定期更新特定 ID 的值。所以在计时器实现中我称之为:
....
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
}
谢谢。