Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
1  
Can you show the exact form field you've got in your view template? I'm not sure without the actual code, but my guess is that you're stumbling into a convention that Formtastic assumes you're following by virtue of the name of your input, but that you could change slightly to avoid this problem. For example, if you're using the helper country_select then 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
I just added the code... and yes I do totally want the user to enter the country in free text. I at least want to be given the option :) – dave at flow Sep 7 '12 at 5:13
I found the solution :) ! – dave at flow Sep 7 '12 at 5:25

1 Answer

up vote 3 down vote accepted

Add , :as => :string

to the end of the line that's causing the error

= semantic_form_for @store, {:html => { :class => "form-horizontal" }} do |f|
  = f.input :default_country, :as => :string
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.