Displaying 1 result from an estimated 1 matches for "_list_item".
Did you mean:
list_item
2007 Dec 15
3
check_box not being checked
I''m new to RoR and I''m having a little problem that I can''t solve.
My model is simple. I have Lists and ListItems.
I have a view that loops through all the list items, and I put the
HTML for the each list item row in a partial called _list_item.rhtml.
This is the view, called show.rhtml
<ul>
<%= render(:partial => "list_item", :collection => @list.list_items)
%>
</ul>
And this is the partial _list_item.rhtml
<li>
<%= check_box ''list_item'', ''done'' %>
<...