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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T09:32:14+00:00 2026-06-10T09:32:14+00:00

Here is a code a *helper.rb. Instead of these 3 methods (they are working

  • 0

Here is a code a *helper.rb. Instead of these 3 methods (they are working perfectly)

def years_of_birth_select(form)
    form.select :year_of_birth, (1..31).to_a
  end

  def months_of_birth_select(form)
    form.select :month_of_birth, months
  end

  def days_of_birth_select(form)
    form.select :day_of_birth,  years
  end

I tried to call only one method

  def date_of_birth_select(form)
    form.select :day_of_birth,  years
    form.select :month_of_birth, months
    form.select :year_of_birth, (1..31).to_a
 end

and it was called as

 = date_of_birth_select f

and it displayed only one select, :year_of_birth, select.

What did I do wrong and what should I do to be able to call date_of_birth_select correctly?

  • 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-10T09:32:16+00:00Added an answer on June 10, 2026 at 9:32 am

    The form element that is displayed in the view is the return value of the helper method, which defaults to the last expression. In the first case, each method only has one line, so the result of form.select ... is the return value, and so the form select is displayed properly. However when you merge them into one method, the return values from the first two lines are not returned, so you only get the :year_of_birth select.

    To get all of them you have to concatenate the return values (strings) together:

    def date_of_birth_select(form)
      ((form.select :day_of_birth,  years) +
       (form.select :month_of_birth, months) +
       (form.select :year_of_birth, (1..31).to_a)).html_safe
    end
    

    The html_safe at the end is to tell rails that it should not escape the string, which it will otherwise do by default.

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

Sidebar

Related Questions

Here is code my jqgrid editing through form. $(#DataEnergy).jqGrid('navGrid', '#pagergrid', {}, //options {editdata: {
Here's the code that is generated by default <div id=ui-datepicker-div class=ui-datepicker ui-widget ui-widget-content ui-helper-
I'm using the form::select helper in Kohana 3.2 to generate a select input with
simonn helped me to code an ordered integer partition function here. He posted two
Some time ago, people here helped me very well with code. Now I'm tasked
The script is on jsfiddle here : CODE What it does at the moment
Ok the error is showing up somewhere in this here code if($error==false) { $query
Here my code, I need to insert into mysql database I have mysql,php,android 1)
Here is code from MSDN . I don't understand why the work isn't just
Here a code to demonstrate an annoying problem: class A { public: A(): m_b(1),

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.