I am following railscast to generate complex form

I am receiving this error:-

 "Error: \"throw $continue\" is deprecated, use \"return\" instead"

Any idea?

I am receiving this error when I am trying to add a new question.

link|improve this question

Maybe you could include some code so that we know what you're talking about. – mu is too short Aug 7 '11 at 22:15
@mu is too short railscasts.com/episodes/197-nested-model-form-part-2 includes all the code.. check it.. let me know if its not fine.. I will paste the same code here. – Mohit Jain Aug 7 '11 at 23:28
feedback

1 Answer

up vote 0 down vote accepted

From railscast:--

def link_to_add_fields(name, f, association)
  new_object = f.object.class.reflect_on_association(association).klass.new
  fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
  render(association.to_s.singularize + "_fields", :f => builder)
  end
 link_to_function(name, h("add_fields(this, \"#{association}\", \"#{escape_javascript(fields)}\")"))
end

Remove h in link_to_function ie

def link_to_add_fields(name, f, association)
  new_object = f.object.class.reflect_on_association(association).klass.new
  fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
  render(association.to_s.singularize + "_fields", :f => builder)
  end
 link_to_function(name, ("add_fields(this, \"#{association}\", \"#{escape_javascript(fields)}\")"))
end
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.