--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/AfwGLdy3a6AJ.
To post to this group, send email to google-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Column<HotelSearchDTO, String> bookCol = new Column<HotelSearchDTO, String>(new ButtonCell()) {@Overridepublic String getValue(HotelSearchDTO object) {return "Normal";
}};bookCol.setFieldUpdater(new FieldUpdater<HotelSearchDTO, String>() {@Overridepublic void update(int index, HotelSearchDTO object, String value) {// How to return "Loading..." from this place as this is the only place to handle click event.
}});
Column<HotelSearchDTO, String> bookCol = new Column<HotelSearchDTO, String>(new ButtonCell()) {@Overridepublic String getValue(HotelSearchDTO object) {
return normalButtonlicked ? "Loading…" : "Normal";;
}};bookCol.setFieldUpdater(new FieldUpdater<HotelSearchDTO, String>() {@Overridepublic void update(int index, HotelSearchDTO object, String value) {
normalButtonClicked = true;
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/twXiMfyZ6V8J.
To post to this group, send email to google-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.