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

  • Home
  • SEARCH
  • 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 603495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:56:13+00:00 2026-05-13T16:56:13+00:00

How can I have linked drop downs on a rails page. both drop downs

  • 0

How can I have linked drop downs on a rails page. both drop downs will be coming from database.

for example If first drop down is category (coming form category table). second drop down, products, also coming from db, will be populated based on selection of first drop down?

  • 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-13T16:56:13+00:00Added an answer on May 13, 2026 at 4:56 pm

    You can create your dropdown using collection_select helper and on selection of a value in one drop down you can send the ajax request back to your controller action to update another element of the page with the new drop down and products, like so

    <%= collection_select(:category, :some_category_method_name, 
        Category.all, :id, :category_name, 
        {:prompt => 'Select'},
        { :onchange =>  remote_function(:url => {:action => 'get_products'}, 
        :with => "'id=' + this.value")}) 
    %>
    <div id='product_dropdown'></div>
    

    So basically what the above code doing is, generating a drop down for category and on changing the selected value from this drop down will send a request to the action ‘get_products’ with the id of the selected category. Then in that method you can get all products with that category and update the ‘product_dropdown’ element with a new partial that has a dropdown for products.

     def get_products
       @category = Category.find(params[:id)
       render :update do |page|
         page.replace_html 'product_dropdown', 
              :partial => 'partial_name_in_which_you_have_product_drop_down',
              :locals => {:products => @category.products}
    
       end
     end
    

    Hopefully this should get you started.

    If you are not sure how collection_select works then here is the docs

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I create View on Linked Server db. For Example I have a
I have 2 linked database tables (Similar to Country -> State) - how can
I have a page with a bunch of drop-downs as filters. Suppose I have
In a client application I have a DBIx::Class model 'Todo' that can be linked
I have a database table where all the records are linked among each other
I have 4 tables, linked in a circular reference - I remember from college
I want to store data at run time, I can have a linked list
I have a website, published here . On the contact us page, linked above,
My Scenario I'm working on a database which will contain many details from various
We can have many handlers: touches handler, UIControl handler (buttons, sliders), performSelector, CADisplayLink, NSTimer

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.