> > listEditor.getList().remove(phoneNumber); // phone number is the last proxy > in the list > > 1) as a result, the first element in the list is always removed > 2) when flush is called on the contactEditor(parent editor that contacs the > driver), no values are filled in the list of phoneNumbersProxies >
The problem here is related with issue http://code.google.com/p/google-web-toolkit/issues/detail?id=6081 - bug with the RequestFactoryEditorDriver, With the SimpleBeanEditorDriver instead of RequestFactoryEditorDriver everything works fine. Other thing that i noticed is that every valueProxy.hashCode() is the same > as others from that type. > Newly created proxies without any changes on their properties: PhoneNumber p1 = request.create(PhoneNumber.class); PhoneNumber p2 = request.create(PhoneNumber.class); p1.equals(p2) is true (same hashCode) don't know why? -- 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.
