如何将单击处理程序添加到 GWT ButtonCell?
2022-09-03 07:01:35
我为它创建了一个 ButtonCell 和一个 Column:
ButtonCell previewButton = new ButtonCell();
Column<Auction,String> preview = new Column<Auction,String>(previewButton) {
public String getValue(Auction object) {
return "Preview";
}
};
我现在如何为此 ButtonCell 添加单击处理程序(例如 ClickHandler)?