I have a new form for create question and answers. This is my form:
<%= simple_form_for [@question_type, @question], url: path, defaults: { error: false } do |question_form| %>
<%= render 'shared/error_messages', object: question_form.object %>
<div class="question_fields well">
<%= question_form.input :content, input_html: { rows: 4, class: 'span6' } %>
<%= question_form.input :mark, input_html: { class: 'span1' } %>
<%= question_form.association :topic %>
</div>
<%= question_form.simple_fields_for :answers do |answer_form| %>
<%= render 'answer', f: answer_form %>
<% end %>
<%= question_form.button :submit, class: "new_resource" %>
<% end %>
The question have 3 fields: content, mark, topic.
This is my create action in question controller:
def create
@question = Question.new(params[:question])
@question.question_type_id = params[:question_type_id]
@question.user_id = current_user.id
if @question.save
flash[:success] = "Successfully created question."
redirect_to new_question_type_question_path
else
render 'new'
end
end
My routes:
resources :question_types, only: [:index] do
resources :questions
end
Now, i want after user submit to create question successful, it will show new form again, but the topic select will display the topic of question was just saved. How can i do that?
redirect_to whatever_action_path, :topic_id => params[:topic_id]could work. Let me know if it works ;) – MrYoshiji Nov 12 '12 at 14:18redirect_to new_question_type_question_path(:topic_id => @question.topic_id )and then use<%= question_form.association :topic, params[:topic_id) %>(assuming the last argument is the selected option) – MrYoshiji Nov 12 '12 at 14:37