-
Notifications
You must be signed in to change notification settings - Fork 48
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
Support value="target.value"
#27
Comments
Heh, "not possible" is relative. You could write your actions to accept the full event and that would work fine... I do agree that parity with |
Well, when you do |
+1 Otherwise I need to say something like:
|
Hi All, Is there any solution to this issue? It calls my action inside route, but it is passing some event object instead of checked value (I am expecting true/false) like it does for the usual action helper: I am also facing the same issue while using select drodown: Here I am expecting to get the values JDBC or HDFS when the actions is fired. If it can be done by writing action to receive full event, please give some example how to extract required information from the event. I am new to ember. Please help. |
It's not possible to use
{{route-action}}
with native HTML controls because the helper is unable to extract the value.E. g.:
This works with a normal action but fails with a
route-action
.The text was updated successfully, but these errors were encountered: