GWT ImageLoadingCell - 设置特定大小

时间:2012-02-13 22:24:35

标签: image gwt

我正在使用ImageLoadingCell将图像加载到表中,ImageLoadingCell只是获取图像的URL。有没有办法设置图像的大小,所以浏览器会使图像的大小一致吗?

1 个答案:

答案 0 :(得分:0)

Developer's Guide - Creating Custom Cells

您可以为渲染器更改默认模板@Template("<img src=\"{0}\"/>"),例如更改为@Template("<img src=\"{0}\" height=\"100px\" width=\"100px\"/>"), 请参阅文件ImageLoadingCell.class第70行