我有一个项目列表,我想让列表中的第一个项目不可排序且不可移动。列表中的第一项应始终作为列表中的第一项。但是,我似乎无法让它工作。这是我的排序代码:
jQuery ->
$('#lineup').sortable(
axis: 'y'
items: ".ui-state-enabled"
cancel: ".ui-state-disabled"
update: ->
$.post($(this).data('update-url'), $(this).sortable('serialize'))
);
我正在使用 content_tag_for 来加载它:
%ul.nav.nav-tabs.nav-stacked#lineup{"data-update-url" => sort_lineups_url}
- @pieces.each_with_index do |piece, index|
- if index == 0
= content_tag_for(:li, piece, :class => 'ui-state-disabled') do
= link_to "#{(index + 1).to_s + ' - ' + piece.name}", '#'
- else
= content_tag_for(:li, piece, :class => 'ui-state-enabled') do
= link_to "#{(index + 1).to_s + ' - ' + piece.name}", '#'
我究竟做错了什么?我所做的一切似乎都无法阻止对第一项进行排序和/或移动