Last active
December 23, 2022 02:32
-
-
Save brunopgalvao/6d86e8e2c570f86823ea to your computer and use it in GitHub Desktop.
HTML5 Datalist using Ruby on Rails form_for
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= form_for @person do |f| %> | |
<%= f.label :first_name, "First Name" %>: | |
<%= f.text_field :first_name, list: 'first-name' %> | |
<datalist id="first-name"> | |
<% Person.all.each do |person| %> | |
<option value="<%= person.first_name %>"></option> | |
<% end %> | |
</datalist> | |
<%= f.submit %> | |
<% end %> | |
You may also want to do distinct: | |
<% Person.select(:first_name).distinct.each do |person| %> |
How can we test the view that results from the datalist options. For e.g. in case we have following 4 options ---
1. fruit/apple
2. fruit/guava
3. fruit/melon
4. fruit/grapes
and I select fruit/apple in the text_field, the list under the text_filed will also show fruit/apple. How to write an rspec test that verifies that the list under the text_field is showing fruit/apple ? This is just to validate that the datalist is working.
Very good! Thanks @brunopgalvao @joleb
Thanks for this @brunopgalvao!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
better use
It is written in Slim but you get the idea ;)
It's way more compact and easier to read imo.