annullaAttivazioneBuonoPopup.jsp 1.19 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
<%@ include file="/project/include.jsp" %>

<script type="text/javascript">

	/** */
	function annullaAttivazioneBuono() {
		var form = document.getElementById('annullaAttivazioneBuonoForm');
		juiceSubmitForm(form, -1);
	}

</script>

<j:form id="annullaAttivazioneBuonoForm" name="annullaAttivazioneBuonoAttivazione" event="annullaAttivazioneBuono" enctype="multipart/form-data" method="POST" clientValidatorProvider="it.cedaf.juice.mvc.modules.shell.view.helper.JavascriptClientValidatorProvider">

	<j:bind prop="selectedRow">
		<j:hidden id="selectedRow"/>
	</j:bind>
	<j:bind prop="dmKey">
		<j:hidden id="dmKey"/>
	</j:bind>
	
	<br>
	<table border="0" cellpadding="0" cellspacing="3" width="100%">
		<tr>
			<td class="generic-label" style="padding: 4px 4px 15px 4px;">Sei sicuro di voler annullare l'attivazione del buono?</td>
		</tr>	
		<tr>
			<td style="padding: 15px 4px 5px 4px; text-align:center;">
				<button class="generic-button ui-state-default ui-corner-all" onclick="annullaAttivazioneBuono();"><img src="${j:getResourceUrlOfModule('shell', 'img/misc/confirm-small.gif')}" width="16" height="16" border="0" align="absmiddle">&nbsp;Conferma</button> 													
			</td>
		</tr>
	</table>
</j:form>