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
I'm trying to figure out how to use fields in a form to populate parts of my hstore field. Here's the data in the hstore:
custom = { "settings" => { "search" => ?, "start" => ? } }
What works (not ideal):
<%= f.text_area :custom %>
What doesn't work (and what I need)
<%= f.text_field "custom[settings][search]" %> <%= f.text_field "custom[settings][start]" %>
I asked this question last night on SO but no answers yet: http://stackoverflow.com/questions/34470564/use-a-form-to-populate-a-deeply-nested-hstore
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to figure out how to use fields in a form to populate parts of my hstore field.
Here's the data in the hstore:
What works (not ideal):
What doesn't work (and what I need)
I asked this question last night on SO but no answers yet:
http://stackoverflow.com/questions/34470564/use-a-form-to-populate-a-deeply-nested-hstore
The text was updated successfully, but these errors were encountered: