Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to nest content tags into a custom helper, to create something like this:

<div class="field">
   <label>A Label</label>
   <input class="medium new_value" size="20" type="text" name="value_name" />
</div>

Note that the input is not associated with a form, it will be saved via javascript.

Here is the helper (it will do more then just display the html):

module InputHelper
    def editable_input(label,name)
         content_tag :div, :class => "field" do
          content_tag :label,label
          text_field_tag name,'', :class => 'medium new_value'
         end
    end
end

<%= editable_input 'Year Founded', 'companyStartDate' %>

However, the label is not displayed when I call the helper, only the input is displayed. If it comment out the text_field_tag, then the label is displayed.

Thanks!

share|improve this question

2 Answers

up vote 51 down vote accepted

You need a + to quick fix :D

module InputHelper
  def editable_input(label,name)
    content_tag :div, :class => "field" do
      content_tag(:label,label) + # Note the + in this line
      text_field_tag(name,'', :class => 'medium new_value')
    end
  end
end

<%= editable_input 'Year Founded', 'companyStartDate' %>

Inside the block of content_tag :div, only the last returned string would be displayed.

share|improve this answer
Typo (in comment only, but slightly confusing) - "Not*e* the + in this line" – Chowlett Nov 17 '10 at 15:15
After adding that in, I get syntax error: syntax error, unexpected tIDENTIFIER, expecting kDO or '{' or '(' text_field_tag name,'', :class => 'medium new_value' ^ – christo16 Nov 17 '10 at 15:16
I updated the answer, see if this OK. – PeterWong Nov 17 '10 at 15:50
Working, thanks! – christo16 Nov 17 '10 at 16:08
3  
This ended 3 hours of human suffering, thanks! – canthiswait Feb 25 '11 at 14:14

You can also use the concat method:

module InputHelper
  def editable_input(label,name)
    content_tag :div, :class => "field" do
      concat(content_tag(:label,label))
      concat(text_field_tag(name,'', :class => 'medium new_value'))
    end
  end
end

Source: Nesting content_tag in Rails 3

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.