I am trying to display data in the Modal when I click the button. This is the HTML code I wrote everything is looking fine but it won’t open the Modal when I click the button. If I put an alert inside the script it popup when I click the button but anything else like the modal is not working. What I am doing wrong?
JavaScript
x
78
78
1
<tr th:each="course : ${courses}">
2
<td th:text="${course.courseid}"></td>
3
<td th:text="${course.name}"></td>
4
<td th:text="${course.year}"></td>
5
<td th:text="${course.syllabus}"></td>
6
<td th:text="${course.semester}"></td>
7
<td th:text="${course.attendance}"></td>
8
<td>
9
<a th:href="@{/courses/getOne/(courseid=${course.courseid})}" class="btn btn-sm btn-success" onclick="openModal()" ><img src="https://i.ibb.co/YcxKhdh/pencil-removebg-preview.png" width="20" /></a>
10
<script>
11
function openModal() {
12
$(document).ready(function(){
13
14
event.preventDefault();
15
var href = $(this).attr("href");
16
17
$.get(href, function(course, status){
18
$(".editForm .courseid").val(course.courseid);
19
$(".editForm .name").val(course.name);
20
$(".editForm .year").val(course.year);
21
$(".editForm .syllabus").val(course.syllabus);
22
$(".editForm .semester").val(course.semester);
23
$(".editForm .attendance").val(course.attendance);
24
});
25
26
$("#editModal").modal('show');
27
28
});
29
30
}
31
</script>
32
33
<div class="editFrom" id="editModal">
34
<form th:action="@{/courses/editCourse}" method="POST">
35
<div class="modal" role="dialog">
36
<div class="modal-dialog">
37
<div class="modal-content" style="background-color:#383434">
38
39
<!-- Modal Header -->
40
<div class="modal-header">
41
<h4 class="modal-title" id="editModal">Update Course</h4>
42
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
43
</div>
44
45
<!-- Modal body -->
46
<div class="modal-body" style="background-color:#383434">
47
48
<label for="courseidEdit" class="col-form-label">ID</label>
49
<input style="background-color:#CDCDCD" type="text" class="form-control" id="courseidEdit" name="courseidEdit" value="" />
50
51
<label for="nameEdit" class="col-form-label">Name</label>
52
<input style="background-color:#CDCDCD" type="text" class="form-control" id="nameEdit" name="nameEdit" value="" />
53
54
<label for="yearEdit" class="col-form-label">Year</label>
55
<input style="background-color:#CDCDCD" type="text" class="form-control" id="yearEdit" name="yearEdit" value="" />
56
57
<label for="syllabusEdit" class="col-form-label">Syllabus</label>
58
<input style="background-color:#CDCDCD" type="text" class="form-control" id="syllabusEdit" name="syllabusEdit" value="" />
59
60
<label for="semesterEdit" class="col-form-label">Semester</label>
61
<input style="background-color:#CDCDCD" type="text" class="form-control" id="semesterEdit" name="semesterEdit" value="" />
62
63
<label for="attendanceEdit" class="col-form-label">Attendance</label>
64
<input style="background-color:#CDCDCD" type="text" class="form-control" id="attendanceEdit" name="attendanceEdit" value="" />
65
</div>
66
67
68
<!-- Modal footer -->
69
<div class="modal-footer">
70
<button type="submit" class="btn btn-success">Update</button>
71
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Cancel</button>
72
</div>
73
74
</div>
75
</div>
76
</div>
77
</form>
78
Advertisement
Answer
Hopefully this work.
JavaScript
1
73
73
1
<tr th:each="course : ${courses}">
2
<td th:text="${course.courseid}"></td>
3
<td th:text="${course.name}"></td>
4
<td th:text="${course.year}"></td>
5
<td th:text="${course.syllabus}"></td>
6
<td th:text="${course.semester}"></td>
7
<td th:text="${course.attendance}"></td>
8
<td>
9
<a th:href="@{/courses/getOne/(courseid=${course.courseid})}" class="btn btn-sm btn-success" onclick="openModal()" ><img src="https://i.ibb.co/YcxKhdh/pencil-removebg-preview.png" width="20" /></a>
10
<script>
11
function openModal() {
12
13
event.preventDefault();
14
var href = $(this).attr("href");
15
16
$.get(href, function(course, status){
17
$(".editForm #courseidEdit").val(course.courseid);
18
$(".editForm #nameEdit").val(course.name);
19
$(".editForm #yearEdit").val(course.year);
20
$(".editForm #syllabusEdit").val(course.syllabus);
21
$(".editForm #semesterEdit").val(course.semester);
22
$(".editForm #attendanceEdit").val(course.attendance);
23
});
24
25
$("#editModal").modal('show');
26
27
}
28
</script>
29
30
<div class="modal" id="editModal" role="dialog">
31
<div class="modal-dialog">
32
<div class="modal-content" style="background-color:#383434">
33
34
<!-- Modal Header -->
35
<div class="modal-header">
36
<h4 class="modal-title" id="editModal">Update Course</h4>
37
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
38
</div>
39
40
<!-- Modal body -->
41
<div class="modal-body" style="background-color:#383434">
42
<form class="editForm" th:action="@{/courses/editCourse}" method="POST">
43
<label for="courseidEdit" class="col-form-label">ID</label>
44
<input style="background-color:#CDCDCD" type="text" class="form-control" id="courseidEdit" name="courseidEdit" value="" />
45
46
<label for="nameEdit" class="col-form-label">Name</label>
47
<input style="background-color:#CDCDCD" type="text" class="form-control" id="nameEdit" name="nameEdit" value="" />
48
49
<label for="yearEdit" class="col-form-label">Year</label>
50
<input style="background-color:#CDCDCD" type="text" class="form-control" id="yearEdit" name="yearEdit" value="" />
51
52
<label for="syllabusEdit" class="col-form-label">Syllabus</label>
53
<input style="background-color:#CDCDCD" type="text" class="form-control" id="syllabusEdit" name="syllabusEdit" value="" />
54
55
<label for="semesterEdit" class="col-form-label">Semester</label>
56
<input style="background-color:#CDCDCD" type="text" class="form-control" id="semesterEdit" name="semesterEdit" value="" />
57
58
<label for="attendanceEdit" class="col-form-label">Attendance</label>
59
<input style="background-color:#CDCDCD" type="text" class="form-control" id="attendanceEdit" name="attendanceEdit" value="" />
60
</form>
61
</div>
62
63
64
<!-- Modal footer -->
65
<div class="modal-footer">
66
<button type="submit" class="btn btn-success">Update</button>
67
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Cancel</button>
68
</div>
69
70
</div>
71
</div>
72
</div>
73
Update: Adding here, the comments I added on the question.
- you don’t need document.ready event, because you are opening modal by clicking on the button that means your dom is already ready.
- Modal and Form are not in correct hierarchy, Form should be inside Modal, and you should call method
.modal('show')
on modal instance not on form. - As in comment your data is not reflected in controls, the reason could be $(“.editForm .courseid”), $(“.editForm .name”) etc. are not present in the html. (Updating the answer with correct selectors).