Hi Everyone, I originally had my sortable element list working properly like so: <ul id="sortable_list"> <% @items.each do |item| %> <li id="item_<%= item.id %>"><%= image_tag "dragme.gif" %><span id="title_<%= item.id %>" class="title"> <%= item.value %></span> <span class="actions"><%= link_to("Delete", :action => "destroy", :id => item.id) %></span></li> <%= sortable_element(''sortable_list'', :update => "list-info", :url => {:action => :update_positions}) %> <% end %> </ul> However, now that I have added AJAX CRUD controls, I can''t seem to get the sortable elements to work! I am using a partial within my <ul> and I suspect that this may be part of the problem... <ul id="sortable_list"> <%= render(:partial => ''item'', :collection => @items) %> </ul> <%= sortable_element(''sortable_list'', :update => "list-info", :url => {:action => :update_positions}) %> I think it may not be getting the proper items or IDs to set them to "sortable elements". Does anybody have any ideas? Thanks in advance. By the way, I am very new to rails, please let me know if you need anything else to help solve the problem. -- Posted via http://www.ruby-forum.com/.