I have a slider and want to change its value in some function. I tried with something like this:
(builder componentAt: #SliderR) widget model setValue: 124.
but it doesn’t work. (value has changed but the marker remains in the same position).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try value: instead of setValue:
The incantation to access this ValueHolder seems quite long and fragile. Be sure to wrap such code under a clear message selector. Or maybe think of sharing this state in an instance variable of your application…