GWT - Make CellTable Cell use HTML?
问题 I have a CellTable where I want to put HTML-code in the cells. The following code is not working, the blank spaces are removed from the output. TextColumn<MyCell> column1 = new TextColumn<MyCell>() { @Override public String getValue(MyCell myCell) { String result = " " +myCell.getValue(); return result; } }; table.addColumn(column1 , "Header1"); I know this could be done using css but I just want to know how to put HTML-code in the cells. Any help is appreciated! 回答1: AFAIK additional