Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 983401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:51:06+00:00 2026-05-16T04:51:06+00:00

I have a form for a nested resource (Client :has_many Workouts) that I want

  • 0

I have a form for a nested resource (Client :has_many Workouts) that I want to pre-populate based on some user input (I use this input to set up some other default parameters for the new action).

<%  form_tag new_client_workout_path(@workout_user) do%>
    <%= date_select nil, :date %>
    <%= submit_tag 'Enter New Workout' %><br/>
<% end %>

If I submit this form I get the following error.

ActionController::MethodNotAllowed Only get, put, and delete requests are allowed.

I can update the form’s method to get, which works, but then I have all of my form paramters on the query string which I don’t want.

Is there some way to accomplish this using a post?

I’ve done something similar when the resource wasn’t nested and it worked fine.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T04:51:07+00:00Added an answer on May 16, 2026 at 4:51 am

    So, as I understand it, you want a form (as shown) to be sent as a POST to a controller which causes another form to be rendered which is pre-populated with date-directed parameters (from the first form), right?

    It’s unconventional but you could just change the new action of your WorkoutsController so accept a POST instead of the conventional GET. In routes.rb

    map.resources :clients do |clients|
      clients.resources :workouts, :new => { :new => :post }
    end
    

    UPDATE

    The clean RESTful way to do something like this is to have a separate controller (working title – ConfigWorkoutsContoller) and actions (new and create) for the first form as follows;

    • ConfigWorkoutsContoller#new renders the form (as shown) which is a GET
    • Its submit action is a POST to the create action with the date
    • ConfigWorkoutsContoller#create pre-populates a @workout instance and renders WorkoutsController#new
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form with some radio buttons that are disabled by default. When
Say I have a Textbox nested within a TabControl . When the form loads,
I have form that displays several keywords (standard set of choice lists that changes
I have a form in C# that has a button that, when clicked, I
I have a form like this: <form name=mine> <input type=text name=one> <input type=text name=two>
I have subclassed Form to include some extra functionality, which boils down to a
I have a form with many input fields. When I catch the submit form
I have a form element that contains multiple lines of inputs. Think of each
I have form area in my view. If I click button A , I
I have a form in which people will be entering dollar values. Possible inputs:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.