24 lines
993 B
Text
24 lines
993 B
Text
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
|
<%@ page language="java" import="it.acxent.jsp.*" %>
|
|
<%-- DICHIARAZIONE BEAN --%>
|
|
<jsp:useBean id="nf" scope="request" type="java.text.NumberFormat" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="df" class="it.acxent.util.SimpleDateFormat" scope="request" type="it.acxent.util.SimpleDateFormat" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="bean" class="it.acxent.anag.Users" type="it.acxent.anag.Users" scope="request" >
|
|
</jsp:useBean>
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
<acx:if wherecondition="<%=bean.getDBState()==0%>">
|
|
<h1>Per inserire gli allegati devi prima salvare il record principale</h1>
|
|
</acx:if>
|
|
<acx:else>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
<label for="txtRicerca">Nota:</label>
|
|
<textarea class="form-control input-sm" name="nota" rows="4" id="nota"><%= bean.getNota() %></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
</acx:else>
|