1 2 3 4 5 6 7 8 9 10 11 12 13 14
   |  
param={type:"payer", IDClient:IDClient, chqVac:chqVac, chq:chq, cb:cb, esp:esp, ticket:ticket, autre:autre, memo:""};
 
$('#dialog').dialog('option', 'height', 300);
$('#dialog').dialog('option', 'width', 500);
$('#dialog').bind('dialogclose', function() {return false});
$('#dialog').dialog('option', 'title', "Observation éventuelle ?");
$('#dialog').html('<br/> <br/><b>Souhaitez-vous attacher une remarque à ce règlement ?<br/> <br/>Par exemple si le nom sur le chèque est différent du nom du ou des participants à l\'activité.</b>'
+'<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-top:30px"><tr>'
+'<td align="center"><input name="Submit" type="button" value="Oui une remarque" onclick="remarque(\'1\','+param+')" style="font-size:10px"/></td>'
+'<td align="center"><input name="Submit" type="button" value="Non pas de remarque" onclick="remarque(\'0\','+param+')" style="font-size:10px"/></td>'
+'<td align="center"><input name="Submit" type="button" value="Annuler la transaction" onclick="$(\'#dialog\').dialog(\'close\')" style="font-size:10px"/></td>'
+'</tr></table>');
$('#dialog').dialog('open'); | 
Partager