We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using this for the first time.
given this example
{{#x-select id="age-group" value=ageGroup action="selectAgeGroup"}} {{#x-option}}Select Age Group...{{/x-option}} {{#x-option value="18-25"}}18-25{{/x-option}} {{#x-option value="25-35"}}25-35{{/x-option}} {{#x-option value="35-55"}}35-55{{/x-option}} {{#x-option value="55+"}}55+{{/x-option}} {{/x-select}}
when action is fired, it receives the previous value. So if I change to "25-35" from "18-25". this.get("ageGroup") is 18-25. Not the new value.
this.get("ageGroup")
The only way I can get this to work is to use an observer. That has the correct value.
The text was updated successfully, but these errors were encountered:
/cc @rosshadden
Sorry, something went wrong.
Fixed blockless form.
46c7acc
In the blockless form the options values list didn't have proper dependent keys so it wasn't being recomputed. Possibly related to #36.
I'm going to close this because I can't replicated on current master. If this comes up again I'll reopen :)
No branches or pull requests
Using this for the first time.
given this example
when action is fired, it receives the previous value. So if I change to "25-35" from "18-25".
this.get("ageGroup")
is 18-25. Not the new value.The only way I can get this to work is to use an observer. That has the correct value.
The text was updated successfully, but these errors were encountered: