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 7399413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:03:27+00:00 2026-05-29T04:03:27+00:00

I have an action like this: def add_credit_card if request.post? unless params[:conditions] flash[:error] =

  • 0

I have an action like this:

def add_credit_card
    if request.post?
      unless params[:conditions]
        flash[:error] = 'You need to accept!'
      end
    end
end

This action renders the following view:

<%= form_tag do %>
  <fieldset>
      <%= check_box_tag "conditions"%> I agree to the <%= link_to "Terms and Conditions", consumer_terms_and_conditions_url, :target => "_blank" %>
  </fieldset>
  <%= submit_tag "Submit" %>
<% end %>

When I do a GET to that action no errors are shown. When I do a submit with that box checked no errors are shown. When I do the first submit without that box checked the error is shown, but the problem comes when I do another submit and the checkbox is not checked, the errors are still there.

My questions are:

  1. Why is that happening?
  2. What would be a better approach to deal with this situation, where a form is not attached to a model and the errors have to be shown just when the user has submitted the form?
  • 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-29T04:03:28+00:00Added an answer on May 29, 2026 at 4:03 am

    Since you’re using the same action, you’ll want to use flash.now so the flash hash does not persist to the next action.

     flash.now[:error] = 'You need to accept!'
    

    Also, it’s not essential, but consider using:

     <%= check_box_tag 'conditions', 'accepted' %>
    

    and then checking the value of the params[:conditions] for the string “accepted” i.e.:

     unless params[:conditions]=='accepted'
       flash.now[:error] = 'You need to accept!'
     end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a model, smth like this: class Action(models.Model): def can_be_applied(self, user): #whatever return
I have a simple form like this: <form name=serachForm method=post action=/home/search> <input type=text name=searchText
I have an action like this: public class News : System.Web.Mvc.Controller { public ActionResult
I have to do through Action like this: Action action = () => {
I have an URL like this /home/action/id How can I access this id in
I have situation like this: user submits form with action='/pay' in '/pay' I have
I have an a4j:commandButton which looks like this <a4j:commandButton id=stopBtn type=button reRender=lastOp action=#{MyBacking.stop} value=Stop
I have a POST controller action like: if (ModelState.IsValid) { try { //.. save
In my views.py, i have a snippit of code like this: def clean_post_data(form): for
I have a controller action which I would like to call another controller action.

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.