32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
$tribunal = (isset($_REQUEST['tribunal'])? $_REQUEST['tribunal'] : '');
|
|
?>
|
|
<label>Mandataire <font color="Red">*</font></label>
|
|
<input type="text" name="mand" value="">
|
|
<input type="hidden" name="jugement[mand]" value="">
|
|
<span class="left"><a id="lienMandataireEdit" title="Editer le mandataire" class="thickbox" href="./pages_saisie/mandataire.php"><img src="../img/edit1.gif" alt="Edition mandataire"/></a></span>
|
|
<p><a id="lienMandataireAdd" href="./pages_saisie/mandataire.php?width=650&height=500&tribunal=<?php print $tribunal; ?>" title="Ajouter un mandataire" class="thickbox">Ajouter un mandataire</a></p>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$("[name=mand]").autocomplete( "./pages_saisie/searchMandataires.php",
|
|
{
|
|
delay: 800,
|
|
minChars: 3,
|
|
cacheLength: 1,
|
|
formatItem: formatItem,
|
|
width: 400,
|
|
max: 40
|
|
}
|
|
);
|
|
|
|
$("[name=mand]").result(function(event, data, formatted) {
|
|
var tribunal = $("#tribunal option:selected").val();
|
|
var idMandataire = data[1];
|
|
$("[name=jugement[mand]]").val(idMandataire);
|
|
$('#lienMandataireEdit').attr('href','./pages_saisie/mandataire.php?width=650&height=500&tribunal='+tribunal+'&id='+idMandataire);
|
|
});
|
|
|
|
function formatItem(row) { return row[0] + " (id: " + row[1] + ")"; }
|
|
});
|
|
</script>
|