I have a binary column type in my "users" table and when I try to include that field within simple_form_for tag, I get an error.

= simple_form_for @user
  = f.input :secret_number

Here's the error-

No input found for binary

Some extra information that might be useful - so I am storing some encrypted information in this column. The data is encrypted at the time ActiveRecord is saved. But in the form that is presented to the user I want to show padded up data, something like - *****456". I have written the following method to decrypt/pad-up secret_number.

def secret_number
  decrypt_and_pad_up(self.secret_number)
end
link|improve this question

57% accept rate
1  
What type of input should this show up as? – Ryan Bigg Dec 10 '11 at 0:11
just a normal input box type=text – user310525 Dec 10 '11 at 0:15
Your secret_number method, as written, would override self.secret_number, and thereby call itself recursively. It should probably be decrypt_and_pad_up self[:secret_number]. – Jordan Dec 10 '11 at 2:10
feedback

1 Answer

up vote 1 down vote accepted

You can see where the error is being raised in SimpleForm::FormBuilder#find_mapping. The reason you're getting this error is because simple_form asks Rails what type of data the given attribute contains--:binary in this case (Rails doesn't know or care that you overrode the secret_number method)--in order to decide what type of form field to generate. Since there's no way to know what kind of form field a binary attribute should use you get this error.

Naturally, the solution is in the docs. If you want it to display as a text input, use the :as option:

f.input :secret_number, :as => :string
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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