0
是否有人使用Materialize.css芯片成功實現了jQuery的sortable
?我試圖重新排列它們,但內部數據在排序後不會響應訂單。Sortable Materialize.css芯片
https://jqueryui.com/sortable/
http://materializecss.com/chips.html
```
$(".location-chips").sortable({
stop: function(e, ui){
// This is still in the original order
console.log($(this).material_chip('data').map(function(o){return o.tag}).join(";"))
}
})
```