In a CellTable, I want to show an image, and when the user clicks on it, I
remove the row from the table. I created a custom cell that extends from
ImageResourceCell, but I don't know how to process the click:
public ClickableImageResourceCell() {
consumedEvents = new HashSet<String>();
consumedEvents.add("click");
}
@Override
public Set<String> getConsumedEvents() {
return consumedEvents;
}
@Override
public void onBrowserEvent(Context context, Element parent,
ImageResource value, NativeEvent event,
ValueUpdater<ImageResource> valueUpdater) {
super.onBrowserEvent(context, parent, value, event, valueUpdater);
if ("click".equals(event.getType())) {
onEnterKeyDown(context, parent, value, event, valueUpdater);
}
}
@Override
protected void onEnterKeyDown(Context context, Element parent,
ImageResource value, NativeEvent event,
ValueUpdater<ImageResource> valueUpdater) {
if (valueUpdater != null) {
valueUpdater.update(value);
}
}
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.