CellTable (または DataGrid) にある「行」値の値に基づいて、アイコンが使用されているかどうかを判断したいと思います。セル レンダラーをビルドするときに、どのように判断すればよいですか?
IconCellDecorator<String> icd = new IconCellDecorator<String>(res.search(), new ClickableTextCell()) {
@Override
protected boolean isIconUsed(String value) {
//value may not be unique across rows (column value), I really need the row instance here.
}
};