When you've got a form field such as this:

<%= f.text_field :last_name %>

it will generate this in HTML:

<input id="person_last_name" name="person[last_name]" size="30" type="text" />

I'd like to know if there's any way to get the name attribute (in this case "person[last_name]") that will be generated.

It seems a bit of an odd thing to want to get but I've got my reasons! I also can't be bothered launching into a lengthy explanation too.

link|improve this question

2  
It seems to be something in the line of "object[attribute]", no ? – LapinLove404 Feb 7 '11 at 13:48
feedback

2 Answers

up vote 2 down vote accepted

Well, as expected, the comment you have is quite true :)

The place in the source where this happens is the InstanceTag class to which all the tag generation drills down. The method is called tag_name.

link|improve this answer
Didn't really know where to look for the info - thanks – LapinLove404 Feb 7 '11 at 14:38
Wow thanks! I was just about to dive into the source as well. I know that it's pretty much "object[attribute]" but things are a lot more complicated when you have nested model forms - one of the reasons I was looking for such a method. – digitalWestie Feb 7 '11 at 18:15
feedback

Neutrino's answer is great. Just want to add what I found, may not be exactly right. But it worked for me.

Find below method in action_view/helpers/form_tag_helper.rb

    def sanitized_object_name
      @sanitized_object_name ||= @object_name.gsub(/\]\[|[^-a-zA-Z0-9:.]/, "_").sub(/_$/, "")
    end

Hope it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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