Is it possible to modify the input date and time within the table without triggering any actions until both values have been entered?
The entered value should be displayed within the table for editing purposes. Here's an example:
function myFunction() {
var x = document.getElementById("myInput").value;
document.getElementById("demo").innerHTML = "You wrote: " + x;
}
<input type="datetime-local" id="myInput" oninput="myFunction()">
<p id="demo"> </p>