首先 - 我是Java和GWT的初学者。我有脚本语言背景所以请明确。
我有一个CellTable,它填充了数据库中的数据(ServerKeyWord类获取数据)。
myCellTable.addColumn(new TextColumn<ServerKeyWord>() {
@Override
public String getValue(ServerKeyWord object) {
// TODO Auto-generated method stub
return object.getName();
}
});
上面的示例有效,但它只将数据显示为文本。我需要将其设为超链接,当您单击它时,它会打开一个新的选项卡到该位置。 我已经浏览网页并得出结论我需要覆盖渲染。
public class HyperTextCell extends AbstractCell<ServerKeyWord> {
interface Template extends SafeHtmlTemplates {
@Template("<a target=\"_blank\" href=\"{0}\">{1}</a>")
SafeHtml hyperText(SafeUri link, String text);
}
private static Template template;
public static final int LINK_INDEX = 0, URL_INDEX = 1;
/**
* Construct a new linkCell.
*/
public HyperTextCell() {
if (template == null) {
template = GWT.create(Template.class);
}
}
@Override
public void render(Context context, ServerKeyWord value, SafeHtmlBuilder sb) {
if (value != null) {
// The template will sanitize the URI.
sb.append(template.hyperText(UriUtils.fromString(value.getName()), value.getName()));
}
}
}
现在......如何在第一个代码示例中使用带有addColumn方法的HyperTextCell类?!
提前谢谢!
答案 0 :(得分:3)
HyperTextCell hyperTextCell = new HyperTextCell();
Column<ServerKeyWord, ServerKeyWord> hyperColumn = new Column<ServerKeyWord, ServerKeyWord>(
hyperTextCell) {
@Override
public ServerKeyWord getValue(ServerKeyWord keyWord) {
return keyWord;
}
};
myCellTable.addColumn(hyperColumn);