64 |
//} |
//} |
65 |
|
|
66 |
} |
} |
67 |
|
/*debut*/ |
68 |
|
function messageIt(objsf, link, empty) { |
69 |
|
// recuperation du terme recherche |
70 |
|
var recherche = document.getElementById("recherchedyn"); |
71 |
|
if (recherche != null) { |
72 |
|
link += "&recherche="+recherche.value; |
73 |
|
}else { |
74 |
|
link += "&recherche="; |
75 |
|
} |
76 |
|
// execution de la requete en POST |
77 |
|
$.ajax({ |
78 |
|
type: "GET", |
79 |
|
url: link, |
80 |
|
cache: false, |
81 |
|
success: function(html){ |
82 |
|
(empty == true )?$("#sousform-"+objsf).empty():''; |
83 |
|
$("#sousform-"+objsf).append(html); |
84 |
|
om_initialize_content(); |
85 |
|
}, |
86 |
|
async: false |
87 |
|
}); |
88 |
|
} |
89 |
/* -- FIN -- */ |
/* -- FIN -- */ |