-
Notifications
You must be signed in to change notification settings - Fork 40.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Constructor binding with a custom collection type does not work #37734
Comments
I did some debugging and one thing seems strange to me. Seems in Constructor binding, our custom converter In JavaBean-based binding, in |
The problem's in Line 43 in c587eae
With JavaBean binding, the target has a value so This logic was introduced to fix #10106. Without stating that a Lines 41 to 42 in 56d820a
The switch to using the target's value and type was made in this polishing commit. I think we may just be able to use The change to always using |
The problem, originally reported on StackOverflow, can be reproduced with the following application:
It works with JavaBean-based binding (as can be seen by uncommenting one
CustomListProperties
class and commenting out the other one).The text was updated successfully, but these errors were encountered: