Hi all
From the Rails Recipes book I borrowed the sortable element recipe:
-
<% bilder.each do |bild| %>
- <%= bild.name %> <% end %>
<%= sortable_element ‘bilder_list’,
:url => { :action => “sort”, :id => params[:id] },
:complete => visual_effect(:highlight, ‘bilder_list’)
%>
Now I’d really like to do the same with a table instead of a list… is
this possible?
Thanks,
Josh