Issue with flush when implementing a NullableSetEditor by wrapping a NullalbleListEditor

2012-09-04 Thread Jeff
HI, I spent a lot of time on the following issue but couldn't figure it out. Any clue is appreciated. Thanks! I have a working NullableStringListEditor implementation: public class NullableStringListEditor extends Composite implements IsEditorOptionalFieldEditor ListString, ListEditorString,

Re: Issue with flush when implementing a NullableSetEditor by wrapping a NullalbleListEditor

2012-09-04 Thread Thomas Broyer
You say you implemented flush() as a no-op, so it's no surprise it doesn't do what you expect, right? On Tuesday, September 4, 2012 9:08:16 AM UTC+2, Jeff wrote: HI, I spent a lot of time on the following issue but couldn't figure it out. Any clue is appreciated. Thanks! I have a

Re: Issue with flush when implementing a NullableSetEditor by wrapping a NullalbleListEditor

2012-09-04 Thread Jeff
Hi Thomas, In the original post, I forgot to mention that, I tried the following flush() implementation but it didn't make a difference: @Override public void flush() {wrappedEditor.asEditor().flush();} I am not sure what else I can do within flush() since the only member variable of the class

Re: Issue with flush when implementing a NullableSetEditor by wrapping a NullalbleListEditor

2012-09-04 Thread Thomas Broyer
On Tuesday, September 4, 2012 5:49:01 PM UTC+2, Jeff wrote: Hi Thomas, In the original post, I forgot to mention that, I tried the following flush() implementation but it didn't make a difference: @Override public void flush() {wrappedEditor.asEditor().flush();} I am not sure what else