I am encountering an issue with my system development task. The form elements appear to be unclickable, preventing any data entry in the fields. I have attempted moving the form tag above the first div in the code structure below as a troubleshooting step, but it did not resolve the problem. If someone could review the code provided and offer insight, it would be greatly appreciated.
Update: After adding zindex: 9999;
to the .form-group
class in the CSS, the form elements are now clickable. However, there is now an issue where the datetimepicker appears behind the select dropdown menu. A screenshot of the problem can be viewed at the following link:
https://i.sstatic.net/KA4bS.png
Here is the snippet of the problematic code:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="col-lg-12" id="detail">
<form name="addData" id="addData" action="" method="post">
// Code continues...
</form>
</div>
// Remaining code omitted for brevity
</script>