I have simple problem with overriding attribute readers and seeing same changes appear on simple_form. I have a model and it has some attributes that I want to override with different readers. I did something like following
class CustomerSupplierItem < ActiveRecord:Base
it has attribute called pack
def pack
“Some overridden value”
end
end
Now when I use the model in simple_form
<%= simple_form_for @customer_supplier_item do |f| %>
<%= f.input :pack %>
<% end %>
I do not get “Some overridden value” as value in pack input. I see original pack value without overridden attr_reader.
What is the way to override the attr_reader such that is affects simple_form and similar form helpers?
Regards
Amit