<%@ include file="/project/include.jsp" %> <script type="text/javascript"> function addPrestazione() { var form = document.getElementById('addPrestazioneForm'); juiceSubmitForm(form, -1); } </script> <j:form id="addPrestazioneForm" name="addPrestazioneName" event="confrontoErogAddPrestazione" enctype="multipart/form-data" method="POST" clientValidatorProvider="it.cedaf.juice.mvc.modules.shell.view.helper.JavascriptClientValidatorProvider"> <j:bind prop="day"> <j:hidden id="day"/> </j:bind> <j:bind prop="dmKey"> <j:hidden id="dmKey"/> </j:bind> <br> <table border="0" cellpadding="0" cellspacing="3" width="100%"> <tr> <td colspan="2" class="generic-label" style="padding: 4px 4px 15px 4px;"> Aggiunta di una prestazione per il giorno ${dto_day} </td> </tr> <tr> <td class="form-label"> Prestazione<span class="form-label-required">�*</span> </td> <td class="form-values"> <j:bind prop="gruppoPrestazione"> <j:select class="form-input" id="idGruppoPrestazione" emptyOptionDescr="" /> <shell:error /> </j:bind> </td> </tr> <tr> <td class="form-label"> Quantit�<span class="form-label-required">�*</span> </td> <td class="form-values"> <j:bind prop="quantita"> <j:text class="form-short-text"/> <shell:error /> </j:bind> </td> </tr> <tr> <td class="form-label"> Motivazione<span class="form-label-required">�*</span> </td> <td class="form-values"> <j:bind prop="note"> <j:textarea class="form-long-textarea" style="width: 35em;"/> <shell:error /> </j:bind> </td> </tr> <tr> <td> </td> <td style="padding: 15px 4px 5px 4px;"> <button class="generic-button ui-state-default ui-corner-all" onclick="addPrestazione();"><img src="${j:getResourceUrlOfModule('shell', 'img/misc/confirm-small.gif')}" width="16" height="16" border="0" align="absmiddle"> Aggiungi prestazione</button> </td> </tr> </table> </j:form>