ListEditor with inheritance

2011-12-22 Thread chris
There are a few posts asking about Editor's discussing inheritance this but no responses as of yet. Please keep in mind that I have search google.com/codesearch, GWT issue tracker and google groups looking for some kind of solution to using Editor's with inheritance. // This is my base data

Re: ListEditor with inheritance

2011-12-22 Thread Thomas Broyer
First, have you seen http://code.google.com/p/google-web-toolkit/issues/detail?id=6719 ? In your case, I think you could do it quite easily by: 1. not having the TextArea as a sub-editor 2. implementing ValueAwareEditor to push to the TextArea and make it visible when the value is a

Re: ListEditor with inheritance

2011-12-22 Thread Stefan Ollinger
I submitted a post to the gwt contributors mailing list with a similar issue: https://groups.google.com/d/msg/google-web-toolkit-contributors/gUFkDIQ2TSE/Atjg5PZ6G4kJ This is basically what is proposed in the Issue 6791. Is there any progress on that issue yet, or are there any problems which

Re: ListEditor with inheritance

2011-12-22 Thread chris
Thomas, Thank you for your quick response. I do have a semi working solution that does support inheritance, still has some bugs that are probably caused by my lack of generics in the EditorSource. I did see BobV's response on stackoverflow but wasn't exactly sure it would fix my problem. Going