首先 - 我是 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 类?!
先感谢您!