-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
37 lines (34 loc) · 1.14 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!-- <div class="container mt-4">
<label for="exampleSelect" class="form-label">Selecciona un elemento:</label>
<%
if (!listado.isEmpty()){
for( Departamento unDepto : listado) {
%>
<select class="form-select" id="exampleSelect">
<option value="<%=unDepto.getId()%>"> <%=unDepto.getNombre() %> </option>
<!-- Agrega más opciones aquí -->
<%
}
}
%>
</select>
//validaciones!
List<String> errores = new ArrayList<>();
if(nombre == null || "".equals(nombre)) {
errores.add("Nombre vacío");
}
if(apellido == null || "".equals(apellido)) {
errores.add("Nombre vacío");
if(dni == null || "".equals(dni)) {
errores.add("Id vacío");
}
if(idDepartamento == null || "".equals(idDepartamento)) {
errores.add("Presupuesto vacío");
}
//agrego las demas validaciones!!!! (uds)
/*if(!errores.isEmpty()) {
req.setAttribute("errors", errores);
//vuelvo a la jsp con la lista de errores cargadas
getServletContext().getRequestDispatcher("/nuevoEmpleado.jsp").forward(req, resp);
return;
}*/