polpGrid.jsp 659 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<%@ include file="/project/include.jsp" %>
<shell:grid description="codice,40%;nrSettimane,10%;dataInizio,20%;dataFine,20%;withProblems,10%" />

<script type="text/javascript">
function aggiornamentoPolpPgol() {
	shellFileUploadDialog(
		'it.cedaf.icare.customers.zcmgp.control.action.CaricaPolpExecutor', 
		'Scegliere il file...', 
		'Seleziona il file con il tracciato POLP/PGOL:',
		'aggiornamentoPolpPgolHandler');		
}
	
function aggiornamentoPolpPgolHandler() {
	var response = jqLoadJSON('it.cedaf.icare.customers.zcmgp.control.action.CaricaPolpExecutor');
	if (response.ok) {
		cpReload();
	} else {
		alert("errore: " + response.msg);
	}	
}
</script>