20 lines
758 B
Text
20 lines
758 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="bean" class="it.acxent.art.Articolo" type="it.acxent.art.Articolo" scope="request" >
|
|
</jsp:useBean>
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<label>Altre Compatibilita</label>
|
|
</div>
|
|
<div class="col-lg-12">
|
|
<div id="altreCompatibilitaS" class="summernote" style="height: 300px;"><%= bean.getAltreCompatibilita()%></div>
|
|
<input type="hidden" id="altreCompatibilita" name="altreCompatibilita">
|
|
<%= bean.getAltreCompatibilita()%>
|
|
</div>
|
|
</div>
|
|
|