/[openfoncier]/trunk/app/js/script.js
ViewVC logotype

Diff of /trunk/app/js/script.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 533 by nhaye, Fri Oct 19 16:50:44 2012 UTC revision 534 by vpihour, Wed Oct 24 15:47:20 2012 UTC
# Line 64  function VerifNumdec(champ) { Line 64  function VerifNumdec(champ) {
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 -- */

Legend:
Removed from v.533  
changed lines
  Added in v.534

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26