﻿function RemplisSelect(IdSelect, Url, IdSelectDestination) {
    var code = $("#" + IdSelect + " > option:selected").attr("value");
    
    $.ajax({
        type: "GET",
        contentType: "application/json; charset=utf-8",
        url: Url + "/" + code,
        data: "",
        dataType: "json",
        success: function (data) {
            //debugger;
            if (data.length > 0) {
                var options = '';
                for (s in data) {
                    var ligne = data[s];
                    options += "<option value='" + ligne.Id + "'>" + ligne.Nom + "</option>";
                }
                $("#" + IdSelectDestination).html(options);
                if (data.length == 1)
                    $("#" + IdSelectDestination)[0].selectedIndex = 0;
            }
        }
    });
}
function VideSelect(IdSelectDestination) {
    $("#" + IdSelectDestination).html("<option value='0'>Veuillez choisir...</option>");
}
