Hi, I have problem with translating fields witch have dipendency has_many.
J have:
form do |f|
f.inputs "Price" do
f.translate_inputs do |t|
t.input :name
end
f.has_many :price_items do |ff|
ff.translate_inputs do |t|
t.input :name,
t.input :content,
t.input :price ,
end
end
And t.input :name is ok but everything which is in f.has_many doesn't display..
Any suggestions ?
Hi, I have problem with translating fields witch have dipendency has_many.
J have:
form do |f|
f.inputs "Price" do
f.translate_inputs do |t|
t.input :name
end
f.has_many :price_items do |ff|
ff.translate_inputs do |t|
t.input :name,
t.input :content,
t.input :price ,
end
end
And t.input :name is ok but everything which is in f.has_many doesn't display..
Any suggestions ?