我有以下ButtonCell。如何使其响应点击(例如addClickHandler)?我尝试了多种方法,但都没有用。 Window.alert均未返回响应。
ButtonCell selectButton = new ButtonCell();
Column <HikingMeals,String> update = new Column <HikingMeals,String>(selectButton){
@Override
public String getValue(HikingMeals selectButton)
{
return "Select";
}
public void execute(HikingMeals selectButton) {
// EDIT CODE
Window.alert("Pressed");
}
//@Override
public void update(int index, HikingMeals object, String value) {
// The user clicked on the button for the passed auction.
Window.alert("Pressed2");
}
};
table.addColumn(update, "Select");
最佳答案
您只需要在FieldUpdater
列上设置一个update
:
update.setFieldUpdater(new FieldUpdater<HikingMeals, String>() {
@Override
public void update(int index, HikingMeals object, String value) {
Window.alert("Pressed");
}
});
关于java - GWT Java-CellTable-ButtonCell-如何使其对点击做出响应,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40294627/