I create a small CellTable with gwt. In that table I would like to add some images.
For this I use following code:
Column<Company, String> columnflag = new Column<Company, String>(new ImageCell()) {
public String getValue(Company company) {
return company.getImageSmall();
}
};
This works fine. But I would like to change the size of the image? Does anyone know how I could do this? I have nothing found… Set a fix column width and height does not help.
Greetz
You can try the following code: