I'd like to determine whether an icon is used based on the value of the "row" value that is in the CellTable (or DataGrid). How do I determine that when building the Cell renderer?
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.
}
};