1
我在Vaadin 7.4之前使用了一個呈現爲FontAwesome-Icon(aka LinkButton)的鏈接。Vaadin - 使用FontAwesome在新Vaadin 7.4 Grid中渲染鏈接圖標
table.addGeneratedColumn(FIELD_SHOW_DETAILS_LINK, new Table.ColumnGenerator() {
private static final long serialVersionUID = 1L;
@Override
public Object generateCell(final Table source, final Object itemId, Object columnId) {
final Link link = new Link();
link.setDescription("Show details");
link.setIcon(FontAwesome.SEARCH);
link.setResource(new ExternalResource("#!details/"
+ ((MainVO) itemId).getUid() + "?mode=VIEW"));
link.addStyleName("fa");
return link;
}
});
隨着CSS樣式像這樣:
.fa {
font-family: FontAwesome;
color: gray;
text-decoration: none;
font-weight: normal;
padding-left: 5px;
padding-right: 5px;
}
我試圖「翻譯」這個使用了PropertyValueGenerator新的網格通過添加生成列像這樣使用我們這樣做的BeanItemContainer addGeneratedProperty方法。但是這並沒有奏效,佈局只是顯示了Link-class的對象符號。
任何幫助非常感謝!
這工作,謝謝!現在將該值作爲HTML-Link從PropertyValueGenerator的getValue()方法返回。 –