我已经渲染了一个结合了图像和文本的自定义单元格。它看起来像这样:
class ImageTextCell extends AbstractCell<String>
我的问题是如何将此单元格添加到 celltable/datagrid 中。我已经厌倦了这个。
Column<Message, String> iconColumn = new Column<Message, String>(new ImageTextCell())
{
@Override
public String getValue(Message versionStatus) {
return ? // I dont know what to type here. How to return the ImageTextCell object }
};