-
Notifications
You must be signed in to change notification settings - Fork 197
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
add raw value to target #72
base: master
Are you sure you want to change the base?
Conversation
@insin do you have any insight on this PR? Seems good to me |
@aesopwolf @hosmelq the |
Bah. I’m mostly wrong. This is mutating the DOM node with an added property. That feels a bit hackish.. |
I agree, it does feel a bit hackish. Do you know what the downsides are? Or a good alternative? There's a user-land solution outlined here #58 (comment) |
My team hasn’t really had to consider this. We consider the Robustness Principle to carry a lot of weight in form design. Specifically, |
Thanks for sharing that link, I never knew there was a name/label for that idea. What solution does your team use to "strip the formatting out when sending the data."? Is it just a manual process? |
What about setting an attribute
|
@aesopwolf yeah. We have our form validation and cleansing functions together to keep them in sync and just import that at both our UI layer and network layers and run that over the data. |
Related #69