Hello,
I have a problem with fieldupdater in a cell table.
I'm using field updater to allow user changes in this table like the
following:

demoColumn.setFieldUpdater(new FieldUpdater<EntityProxy, String>() {
        @Override
        public void update(int index, EntityProxy object, String value) {
                object.setValue(value);
        }
});

This works fine so far. But I have placed the cell table in a dialog
box. At the bottom of this box a button for saving is placed (with a
simple onClickHandler which stores and after that hides the dialog).

If the user clicks on the field, changes the value and after that
directly clicks on the save button (without clicking somewhere in the
table -> without leaving the changed cell), than the fieldupdater is
not triggered.

Are there any solutions for this?

Best regards

Mark

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to