42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
|
const updateBtn = document.getElementById("update-button");
|
|||
|
const informationInput = document.getElementById("information-input");
|
|||
|
const dateInput = document.getElementById("date-input");
|
|||
|
const caseSelect = document.getElementById("case-select");
|
|||
|
const hearingId = document.getElementById("vb-id").dataset.id;
|
|||
|
|
|||
|
updateBtn.addEventListener("click", () => {
|
|||
|
if (!correctData()) {
|
|||
|
return;
|
|||
|
}
|
|||
|
if (!validate()) {
|
|||
|
return;
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
const correctData = function () {
|
|||
|
|
|||
|
return true;
|
|||
|
};
|
|||
|
|
|||
|
const validate = function () {
|
|||
|
|
|||
|
return true;
|
|||
|
};
|
|||
|
|
|||
|
updateBtn.addEventListener("click", () => {
|
|||
|
let hearingModel = {
|
|||
|
"Id": parseInt(hearingId),
|
|||
|
"Information": informationInput.value,
|
|||
|
"CaseId": parseInt(caseSelect.value),
|
|||
|
"Date": new Date(dateInput.value)
|
|||
|
};
|
|||
|
console.log(hearingModel)
|
|||
|
$.ajax({
|
|||
|
url: "/hearing/update",
|
|||
|
type: "POST",
|
|||
|
contentType: "application/json",
|
|||
|
data: JSON.stringify(hearingModel)
|
|||
|
}).done(() => {
|
|||
|
window.location.href = "/Home/Hearings";
|
|||
|
});
|
|||
|
});
|