0
我想了解如何在gwt地方和活動中使用超鏈接。我不確定爲什麼eclipse會在這裏給出一個錯誤。實現與gwt地點和活動的超鏈接
@UiField Hyperlink entInvoiceCompare;
public SimplePanel getCenterPanel() {
return centerPanel;
}
entInvoiceCompare.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
SmartEBRM.getClientFactory().getPlaceController().goTo(new EnterpriseInvoiceCompareViewPlace());
}
});
}
謝謝。我可以使用一個按鈕,並使它看起來像一個超鏈接? – gagan
如果你想讓它看起來像一個鏈接,使用一個標籤 - 樣式比按鈕更容易(瀏覽器將多個默認樣式應用到Button元素)。 –