I'm using formtastic and I've got a field country.. I'm getting this error when I attempt to display the screen.
To use the :country input, please install a country_select plugin, like this one: https://github.com/jamesds/country-select
Now. I don't want to use any plugin.. It's free text, and I want to keep it that way.
Anyone know how to remove this requirement? Should be easy as... but I'm buggered if I can see how.
= semantic_form_for @store, {:html => { :class => "form-horizontal" }} do |f|
= f.input :default_country

country_selectthen this would trigger the need for the plugin, where it sounds like what you want is whatever the plain text field helper is for Formtastic so that a user can type in the name of a country from their keyboard rather than selecting from a list. – normalocity Sep 7 '12 at 4:24