私は次のようにjquery ui sortableを使用してアイテムのリストをソートしています:
%ul.nav.nav-tabs.nav-stacked#lineup{"data-update-url" => sort_lineups_url}
- @pieces.each_with_index do |piece, index|
= content_tag_for :li, piece do
= link_to "#{(index + 1).to_s + ' - ' + piece.name}", '#'
jQuery ->
$('#lineup').sortable(
axis: 'y'
update: ->
$.post($(this).data('update-url'), $(this).sortable('serialize'))
);
$( "#not-sortable" ).disableSelection();
私がやりたいことは、常に @pieces の最初のアイテムがソートされないようにすることです。ただし、disableSelection() を使用してこれを行う方法がわかりません。助けてください。