calcoloPrestazioniErogateIntervento.jsp 1.38 KB
Newer Older
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 38 39 40 41 42 43 44 45 46 47
<%@ include file="/project/include.jsp"%>

<script type="text/javascript">
	function calcoloExecute() {	
		var form = document.getElementById('formParams');
		juiceSubmitForm(form);
	} 
</script>

<br />
<j:form id="formParams" name="formParams" event="calcoloPrestazioniErogateInterventoExecute" method="POST" clientValidatorProvider="it.cedaf.juice.mvc.modules.shell.view.helper.JavascriptClientValidatorProvider">

<table border="0" cellspacing="3" cellpadding="0" >
	<tr>
		<td class="form-label">
			<span>Periodo di riferimento <span class="form-label-required">&nbsp;*</span></span>
		</td>
		<td class="form-values">
			da: 
			<j:bind prop="periodoRiferimentoDa">
				<j:text class="form-date" id="periodoRiferimentoDaCLD" />
				<shell:calendar inputId="periodoRiferimentoDaCLD" />
				<shell:error />
			</j:bind>
			
			a:
			<j:bind prop="periodoRiferimentoA">
				<j:text class="form-date" id="periodoRiferimentoACLD" />
				<shell:calendar inputId="periodoRiferimentoACLD" />
				<shell:error />
			</j:bind>
		</td>
	</tr>
	<tr>
		<td>
			&nbsp;
		</td>
		<td class="form-values">
			<br>&nbsp;&nbsp;<button class="generic-button ui-state-default ui-corner-all" id="idButton" onclick="javascript:calcoloExecute();"><span class="generic-label">Visualizza prestazioni erogate</span></button>
		</td>
	</tr>	
</table>
<j:bind prop="idIntervento">
	<j:hidden id="idIntervento" />
</j:bind>
</j:form>