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
This issue is related to issue #233 Unless I'm not doing it right, it seems that if I use the bind expression '+' for two StringProperty, the second property explicitly returns the toString function of SFXDelegate Trait
boundStringProperty.onChange({(s,o,n) => println(s"newValue: ${n}")}) boundStringProperty <== bindingStringProperty1 + bindingStringProperty2 bindingStringProperty1 = "HelloWorld "
Result is:
newValue: HelloWorld [SFX]StringProperty [bean:
I am forced to use concat. not a big deal, just an annoyance.
The text was updated successfully, but these errors were encountered:
scalafx/scalafx@33f4664
Merge pull request #282 from kdallen25/fix_269
a29629e
Fixed #269: '+' not working as expected on StringExpression.
No branches or pull requests
This issue is related to issue #233
Unless I'm not doing it right, it seems that if I use the bind expression '+' for two StringProperty, the second property explicitly returns the toString function of SFXDelegate Trait
boundStringProperty.onChange({(s,o,n) => println(s"newValue: ${n}")}) boundStringProperty <== bindingStringProperty1 + bindingStringProperty2 bindingStringProperty1 = "HelloWorld "
Result is:
I am forced to use concat. not a big deal, just an annoyance.
The text was updated successfully, but these errors were encountered: