notificaHeader.jsp 594 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<%@ include file="/project/include.jsp" %>

<script type="text/javascript">	
	function elencoParametriMessaggi() {
		var codNotifica;
		if (bui_datamanagement.getMode().isCreate() && bui_datamanagement.getMode().isMasterActive()) {
			codNotifica = getComboValueById('idCondizione');			
		} else {
			codNotifica = cpGetMasterColumnValueOfCurrentRow('codCondizione');
		}
		if (codNotifica == '') {
			alert('Specificare il campo condizione!');
		} else {
			shellDownload('it.cedaf.icare.notifiche.etc.ElencoParametriNotificaContentProvider', 'codNotifica=' + codNotifica);
		}
	}
</script>