Я передал массив Id сотрудника через вызов ajax в моем контроллере Spring.
function deleteEntries() {
var empList = $('input[type=checkbox]:checked').map(function (_, el) {
return $(el).val();
}).get();
if (empList.length !== 0) {
var r = confirm("Are you sure want to remove multiple entries? \nWarning: This process cannot be undone");
if (r === true) {
$.ajax({
type: 'Post',
url: baseUrl + 'delete_all',
data: {
empList: empList
},
success: function (successMsg) {
location.reload();
},
fail: function (data) {
unblockMyScreen();
alert('Failed to retrieve data');
}
});
}
} else
{
alert("Choose atleast single record to delete.");
}
}.
Теперь в пользовательском интерфейсе у меня есть флажки, также я предоставляю функцию для удаления с помощьювыберите все сразу и удалите.
Теперь Когда я выберу все и нажму кнопку удаления, удаляется только одна запись. Однако, она работает нормально без , выберите все
Вот код удаления
@RequestMapping(value = "/delete_all", method = RequestMethod.POST)
@ResponseBody
public boolean deleteMultipleRecord(@RequestParam(value = "empList[]", required = false) String[] empListToBeRemoved, HttpServletRequest request) {
// String[] empListToBeRemoved = request.getParameterValues("empList");
Employee emp = new Employee();
for (int i = 0; i <= empListToBeRemoved.length; i++) {
if (!empListToBeRemoved[i].equals("0")) {
emp.setEmpIdEnc(empListToBeRemoved[i]);
try {
List<OrgStructureTagging> list = orgStructureTaggingDAO.findEmpByProperty("EMP_ID", emp.getEmpId());
for (OrgStructureTagging structureTagging : list) {
System.out.println("all ids of employees" + structureTagging.getEmployee().getName());
orgStructureTaggingDAO.delete(structureTagging);
}
return true;
} catch (Exception e) {
e.printStackTrace();
log.error("Error Occured While updating the field");
return false;
}
}
}
return false;
}
ЭТО КАК МОЖЕТ СМОТРЕТЬ МОЙ КОД JSP:
<table>
<thead>
<tr class="">
<th width="10%" >
<label>Select All <input type="checkbox" id="ckbCheckAll" value="0">
</label>
</th>
</thead>
<tbody>
<tr>
<td style="text-align: center">
<label> <input type="checkbox" class="checkBoxClass" value="${tl.employee.empIdEnc}">
</label>
</td>
</tr>
</tbody>
То, что я обнаружил, значение по умолчанию для корневого флажка <label>Select All <input type="checkbox" id="ckbCheckAll" value="0">
также передается через массив, поэтому я установил его значение по умолчанию "0"
, поэтому я могу легко пропустить значение корневого флажка, но все же оно становится проблематичным.Пожалуйста, предложите мне лучшее решение.