5
So che questo sarà ovvio, ma non riesco a capirlo.Rubaxa Ordinabile come ottenere una serie di elementi
Im utilizzando Rubaxa/ordinabile e vorrei aggiornare il mio DB con Ajax quando un elemento viene aggiunto, rimosso o elenco è ordinato.
var editableList = Sortable.create(document.getElementById('editable'), {
animation: 150,
filter: '.js-remove',
onFilter: function (evt) {
evt.item.parentNode.removeChild(evt.item);
},
onSort: function(evt) {
console.log(editableList.toArray()); // not working
}
});
document.getElementById('addUser').onclick = function() {
Ply.dialog('prompt', {
title: 'Add',
form: { name: 'name' }
}).done(function (ui) {
var el = document.createElement('li');
el.innerHTML = ui.data.name + '<i class="js-remove">✖</i>';
editableList.el.appendChild(el);
});
};
Qualsiasi aiuto è apprezzato.