Nestable Listを使用してReleseアクセスを行っています。 List1からList2に項目をドロップすると、データベースに保存する必要があります。List2にドロップされた項目を特定する方法?Nestableリストで要素を削除する方法
これは私のコードです:
<div class="col-lg-6">
<h3 class="droppTextCenter">Serviços Disponíveis</h3>
<div class="dd" id="nestable">
<script id="template" type="text/template7">
<ol class="dd-list">
{{#each Services}}
<li class="dd-item" data-id="{{Id}}">
<div class="dd-handle">
<div class="col-lg-9">
{{Descryption}}
</div>
</div>
</li>
{{/each}}
</ol>
</script>
</div>
</div>
<div class="col-lg-6">
<h3 class="droppTextCenter">Serviços Liberados para o Usuário</h3>
<div class="dd" id="nestable2">
<script id="template2" type="text/template7">
<ol class="dd-list">
{{#each ServicesReleased}}
<li class="dd-item" data-id="{{Id}}">
<div class="dd-handle">
<div class="col-lg-9">
{{Descryption}}
</div>
</div>
</li>
{{/each}}
</ol>
</script>
</div>
</div>
私はリストを作るためにtemplate7を使用しています。
これで、ネスト可能なonChangeでajaxメソッドを作成し、データベースに保存します。
$('#nestable').nestable({
maxDepth: 1,
group: 1
}).on('change', updateOutput);
// activate Nestable for list 2
$('#nestable2').nestable({
maxDepth: 1,
group: 1
}).on('change', updateOutput);
これはupdateOutput
の代わりになります。 私はそれをList1からList2に移動するとデータベースに保存する必要がありますが、List2からList1に移動するときにデータベースから削除する必要があります。
function saveServicosLiberados() {
$.ajax({
url: "/Admin/MeusNegociosAcessos/SaveServicosLiberados",
method: "POST",
data: {
Id: ????????
},
success: function (result) {
var list = e.length ? e : $(e.target), output = list.data('output');
if (window.JSON) {
output.val(window.JSON.stringify(list.nestable('serialize')));
} else {
output.val('É necessario estár com um nevegador com suporte à JSON.');
}
}
});
}
function deleteServicosLiberados() {
$.ajax({
url: "/Admin/Delete",
method: "POST",
data: {
Id: ??????????
},
success: function (result) {
var list = e.length ? e : $(e.target), output = list.data('output');
if (window.JSON) {
output.val(window.JSON.stringify(list.nestable('serialize')));
} else {
output.val('É necessario estár com um nevegador com suporte à JSON.');
}
}
});
}
だから、私は落としたアイテムからIDを取るのですか?