Displaying 1 result from an estimated 1 matches for "list_item_id".
2006 Jul 02
6
remote form w/ evalScripts:true
...''list_item_link'', ''list_id'', :value => @list.id%>
<%= hidden_field ''list_item_link'', ''list_item_type'', :value => ''List'' %>
Which list?
<%= select ''list_item_link'', ''list_item_id'', @lists.collect{ |l|
[ l.name, l.id] },
{ :include_blank => true},
{ :class => "formfield", :onchange => "this.form.submit()" }
%>
<%= end_form_tag %>
And here is the code in the template that actually works (using a GET
instead):
Which l...