|
|
@ -98,7 +98,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</c:if> |
|
|
|
</c:if> |
|
|
|
<c:if test="<%= (intPratica.getTipoProcedura().equals(Constants.PROCEDURA_P7)) %>"> |
|
|
|
<c:if test="<%= (intPratica.getTipoProcedura().equals(Constants.PROCEDURA_P7)) %>"> |
|
|
|
<aui:input disabled="<%= disabledInput && !enabledByIntegrazione %>" type="number" name="interventoVoceP7" style="display:inline-block;width:80px;" label="intervento-voce-b" /> |
|
|
|
<aui:input disabled="<%= disabledInput && !enabledByIntegrazione %>" type="text" name="interventoVoceP7" style="display:inline-block;width:80px;" label="intervento-voce-b" /> |
|
|
|
</c:if> |
|
|
|
</c:if> |
|
|
|
<div class="row row-padding-custom "> |
|
|
|
<div class="row row-padding-custom "> |
|
|
|
<div class="col-xs-12"> |
|
|
|
<div class="col-xs-12"> |
|
|
@ -1023,4 +1023,12 @@ function checkCollaudoStatico(){ |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#<portlet:namespace/>interventoVoceP7").on("keypress keyup blur",function (event) { |
|
|
|
|
|
|
|
if (event.which == 43){ |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
}else if(event.which < 48 || event.which > 57){ |
|
|
|
|
|
|
|
event.preventDefault(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
</script> |
|
|
|