First commit
This commit is contained in:
parent
cf97b64877
commit
cc69770608
1468 changed files with 265316 additions and 128 deletions
37
www/admin/anag/_inc_clifor_doc.jsp
Normal file
37
www/admin/anag/_inc_clifor_doc.jsp
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<!-- _inc_clifor_doc.jsp -->
|
||||
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
||||
<%@ page language="java" import="it.acxent.jsp.*" %>
|
||||
<%-- DICHIARAZIONE BEAN --%>
|
||||
<jsp:useBean id="bean" class="it.acxent.anag.Clifor" type="it.acxent.anag.Clifor" scope="request" >
|
||||
</jsp:useBean>
|
||||
<jsp:useBean id="df" class="it.acxent.util.SimpleDateFormat" scope="request" type="it.acxent.util.SimpleDateFormat" >
|
||||
</jsp:useBean>
|
||||
<%-- FINE DICHIARAZIONE BEAN --%>
|
||||
|
||||
<%-- RIGA 1 --%>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-xs-6">
|
||||
<label for="descrizione">Numero Documento di identità:</label>
|
||||
<br>
|
||||
<input type="text" id="numeroDocumento" name="numeroDocumento" maxlength="30" value="<%= bean.getNumeroDocumento() %>" class="form-control input-sm">
|
||||
</div>
|
||||
<div class="col-lg-4 col-xs-6">
|
||||
<label for="descrizione">Data Scadenza Documento di Identità:</label>
|
||||
<br>
|
||||
|
||||
<input type="text" class="form-control input-sm datemask datapicker" id="dataScadenzaDocumento" name="dataScadenzaDocumento" maxlength="10" value="<%= df.format(bean.getDataScadenzaDocumento()) %>" >
|
||||
|
||||
</div>
|
||||
<div class="col-lg-4 col-xs-6">
|
||||
<label for="descrizione">Documento Verificato:</label>
|
||||
<br>
|
||||
<select name="flgDocumentoVerificato" id="flgDocumentoVerificato" class="form-control input-sm">
|
||||
<option value = ""> </option>
|
||||
<option <%=bean.getFlgDocumentoVerificato()==0?"selected":"" %> value = "0" >Non Verificato</option>
|
||||
<option <%=bean.getFlgDocumentoVerificato()==10?"selected":"" %> value = "10" >Non Valido</option>
|
||||
<option <%=bean.getFlgDocumentoVerificato()==15?"selected":"" %> value = "15" >In Scadenza</option>
|
||||
<option <%=bean.getFlgDocumentoVerificato()==20?"selected":"" %> value = "20" >Scaduto</option>
|
||||
<option <%=bean.getFlgDocumentoVerificato()==30?"selected":"" %> value = "30" >Verificato</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue