-
Notifications
You must be signed in to change notification settings - Fork 163
Open
Description
Dear all
I'm sorry if my error sound silly. I'm getting this error while implementing carmen on my rails app:
undefined method to_region_select_tag' for #ActionView::Helpers::Tags::Base:0x5d83a18
`
this is my form code
`
<%= simple_form_for @practitioner do |f| %>
<% if practitioner.errors.any? %>
<%= pluralize(practitioner.errors.count, "error") %> prohibited this practitioner from being saved:
<ul>
<% practitioner.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<%= f.label :firstName %>
<%= f.text_field :firstName %>
<%= f.label :LastName %>
<%= f.text_field :LastName %>
<%= f.label :contactNum %>
<%= f.text_field :contactNum %>
<%= f.label :country %>
<%= f.country_select :country, priority: %w(US CA), prompt: 'Please select a country' %>
<%= f.country_select :country, priority: %w(US CA), prompt: 'Please select a country' %>
<%= f.label :state %>
<%= f.text_field :state %>
<%= f.label :location %>
<%= f.text_field :location %>
<%= f.submit %>
<% end %>
`Onikoroshi and jgarciaarzola
Metadata
Metadata
Assignees
Labels
No labels