Weird error in rails 2.3.5

Hello,

I’m facing very weird issue.

in my main page main.html.erb

<%=render(@locations) %>

…and in

locations/location.html.erb

…I try to output name twice

  • <%=location.name%> <%=location.name%><%=location.name%><%=location.name%>
  • name attribute only outputs one time?? it ignore the rest of <%=
    location.name %>

    I cannot figure out why this is happening?

    //Jamal

    On 11 June 2012 14:58, Jamal S. [email protected] wrote:

    locations/location.html.erb

  • <%=location.name%> <%=location.name%><%=location.name%><%=location.name%>
  • name attribute only outputs one time??

    To work out what is going on in these situations it is often worth
    while to fiddle with what you have and see what happens. For example
    what if you try

  • A <%=location.name%> B <%=location.name%> C <%=location.name%> D <%=location.name%> E
  • Also look at the generated html (View > Page Source or similar in the
    browser) to see what is there.

    Colin

    Colin, I already tried that

    It’s only outputting A and nothing else.

    but if I change to.

    <% @locations.each do |location| %>

  • A <%=location.name%> B <%=location.name%> C <%=location.name%> D <%=location.name%> E
  • <% end %>

    it works.

    On 11 June 2012 15:16, Jamal S. [email protected] wrote:

    it works.

    Could you please quote the previous message so that it easier to
    follow the thread. Remember this is a mailing list not a forum
    (though you may be accessing it through a forum interface).

    If you did not have the each loop round it then what was setting up
    location?

    Colin

    Colin L. wrote in post #1064039:

    On 11 June 2012 14:58, Jamal S. [email protected] wrote:

    locations/location.html.erb

  • <%=location.name%> <%=location.name%><%=location.name%><%=location.name%>
  • name attribute only outputs one time??

    To work out what is going on in these situations it is often worth
    while to fiddle with what you have and see what happens. For example
    what if you try

  • A <%=location.name%> B <%=location.name%> C <%=location.name%> D <%=location.name%> E
  • Also look at the generated html (View > Page Source or similar in the
    browser) to see what is there.

    Colin

    Colin, I already tried that

    It’s only outputting A and nothing else.

    but if I change to.

    <% @locations.each do |location| %>

  • A <%=location.name%> B <%=location.name%> C <%=location.name%> D <%=location.name%> E
  • <% end %>

    it works.

    Try to be more specific with old versions of Rails and change
    <%= render(@locations) %>
    to
    <%= render :partial => “location/location”, :collection => @locations
    %>
    In this case _location partial should have local variable “location”
    correctly set.

    Hope, this helps.

    MaxR

    I fixed the issue, it was related to override of name attribute in the
    model class.

    Colin L. wrote in post #1064044:

    On 11 June 2012 15:16, Jamal S. [email protected] wrote:

    it works.

    Could you please quote the previous message so that it easier to
    follow the thread. Remember this is a mailing list not a forum
    (though you may be accessing it through a forum interface).

    If you did not have the each loop round it then what was setting up
    location?

    Colin

    Hello,

    I’m facing very weird issue.

    in my main page main.html.erb

    <%=render(@locations) %>

    …and in

    locations/location.html.erb

    …I try to output name twice

  • <%=location.name%> <%=location.name%><%=location.name%><%=location.name%>
  • name attribute only outputs one time?? it ignore the rest of <%=
    location.name %>

    I cannot figure out why this is happening?

    //Jamal