我有一個單元格的GWT與textcells和buttoncell,現在我想添加一個超鏈接單元格在我的celltable中,這可能嗎?GWT中的超鏈接單元格CellTable
TextCell jobStatusCell = new TextCell();
jobStatusColumn = new Column<EmployerJobs, String>(jobStatusCell) {
@Override
public String getValue(EmployerJobs object) {
// int status = object.getJobStatusId();
/*
* if(status ==1) { return ""; } else
*/
// return "post job";
return "view";
}
};
我想一些這樣的事
HyperlinkCell jobStatusCell = new HyperLinkCell();
感謝
是超鏈接單元仍然是一個東西嗎?你的鏈接把我帶到別處。 – 2016-07-29 14:48:21
@StealthRabbi提問者從未確認他所指的是哪個HyperlinkCell。 GWT從來沒有提供一個所以我只是GOOGLE和第一個。但是,我不確定這是他使用的那個 – 2016-07-30 18:14:15
儘管如此,你在答案中的鏈接並沒有把我帶到一個叫HyperlinkCell的類。至少,我無法在源代碼鏈接中找到它。 – 2016-08-01 11:51:16