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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T09:21:18+00:00 2026-06-12T09:21:18+00:00

I am making a system private message. I want catch all object with checkbox

  • 0

I am making a system private message.

I want catch all object with checkbox checked and if the user click on trash, send to trash action and if click on spam, send to spam action inside message controller. You can see the next image:

enter image description here

This is my checkbox html :

<input class="check" id="506c82001d41c82198000056" name="506c82001d41c82198000056" type="checkbox" value="506c82001d41c82198000056">

Is generated with:

<%= check_box_tag m.id, m.id, false, :class => "check" %>

Delete and spam button are links with format:

<%= link_to "Delete", delete_message_path %>
<%= link_to "Spam", spam_message_path %>

how I can send the results that have been marked with checkbox checkeck to each action?

Thank you very much!

  • 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-06-12T09:21:19+00:00Added an answer on June 12, 2026 at 9:21 am

    If you want a pure html implementation, you can route the form to a single controller action and either handle delete and spam logic from there or redirect to those actions.

    In your form

    <%= form_tag('/messages_cleanup', method: :put) %>
      <%= submit_tag "Delete" %>
      <%= submit_tag "Spam" %>
    
      <%= message.each do |m| %>
        <%= check_box_tag m.id, m.id, false, :class => "check" %>
      <% end %>
    <% end %>
    

    you can have two submit tags that lead to some url, say /messages_cleanup which has a route like match /messages_cleanup, :to => 'messages#cleanup'.

    Then in your messages controller, you can check the submit type in the params[:commit] field.

    def cleanup
      case params[:commit]
        when "Delete"
          # either handle delete logic here or redirect to delete path
        when "Spam"
          # either handle spam logic here or redirect to spam path
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making a private message system and I'm using state machine for to
I'm making a small system for personal use on that I want to handle
I'm making a PM-system on my site. And I want to know ultimate db
I am making an invoice system, I want to get the price textbox to
lets say im making a translate system, it replace all the words that is
I am currently reading Code Complete where McConnell strongly encourages making all variables private.
How can I resolve this problem ?why image file making system.dbnull error? private void
I'm making a system called NCIV in PHP. In that system you can change
I'm currently making some system that will gather statistical reports from different sites, for
I'm making a System.Timer, using the elapse event to update a int of a

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.