Case_accounting/CaseAccounting/CaseAccountingCustomerView/wwwroot/js/Specializations/specializations.js

20 lines
630 B
JavaScript

const goToPageBtn = document.getElementById("go-button");
const removeButtons = document.querySelectorAll(".remove-btn");
removeButtons.forEach(function (button) {
button.addEventListener("click", function (event) {
var id = this.dataset.id;
var result = confirm("Вы уверены, что хотите удалить эту запись?");
if (result) {
$.ajax({
url: "/specialization/delete",
type: "POST",
data: { Id: id }
}).done(() => {
window.location.reload();
});
}
});
});