You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
form do |f|
f.semantic_errors *f.object.errors.keys
f.inputs 'General' do
f.input :active, :as => :boolean
f.translated_inputs "Translated fields", switch_locale: false do |t|
t.input :title
t.input :description, :as => :text
end
f.has_many :images, display: :panel do |image|
image.input :asset, :as => :file
image.translated_inputs "globalize", switch_locale: false, display: :panel do |translate_image|
translate_image.input :title
end
end
end
f.actions
end
But the in the (html) result isn't exist "translate_image.input :title", is empty.
PD: sorry by my english.
The text was updated successfully, but these errors were encountered:
I've next code:
But the in the (html) result isn't exist "translate_image.input :title", is empty.
PD: sorry by my english.
The text was updated successfully, but these errors were encountered: