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
secret_numbermethod, as written, would overrideself.secret_number, and thereby call itself recursively. It should probably bedecrypt_and_pad_up self[:secret_number]. – Jordan Dec 10 '11 at 2:10