簡體   English   中英

劍道嵌套排序不起作用

[英]Kendo nested sortables not working

我有三個可排序的列表。 其中一個是網格,另外兩個只是簡單的列表。 非網格列表相互嵌套。 我的問題是,我無法將項目拖到嵌套的 sortable 中,但是我可以從中拖出。

我從嵌套列表的官方劍道示例中制作了一個小提琴: https : //jsfiddle.net/9jnuwjjg/1/

$("#parent").kendoSortable({
  connectWith: "#nested, #third",
  filter: ">li.list-item", 
  ignore: "#nested >li", 
  placeholder: placeholder
});

$("#nested").kendoSortable({
  connectWith: "#parent, #third",
  filter: ".list-item",
  placeholder: placeholder
});

$("#third").kendoSortable({
  connectWith: "#parent, #nested",
  filter: ".list-item",
  placeholder: placeholder
});

它有同樣的問題,我無法將任何項目拖到嵌套列表中。

任何想法將不勝感激!
謝謝!

我刪除了您在第一個過濾器字段中的直接子選擇器

$("#parent").kendoSortable({
  connectWith: "#nested, #third",
  filter: "li.list-item", 
  ignore: "#nested >li", 
  placeholder: placeholder
});

$("#nested").kendoSortable({
  connectWith: "#parent, #third",
  filter: ".list-item",
  placeholder: placeholder
});

$("#third").kendoSortable({
  connectWith: "#parent, #nested",
  filter: ".list-item",
  placeholder: placeholder
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM