| 123456789101112131415161718192021222324 |
- $(document).ready(function () {
- //gestion des listes déroulantes imbriquées
- $(".liste-principale").change(function () {
- var id = $(this).val();
- console.log(id);
- var dataurl = $(this).attr("data");
- $.ajax({
- url: dataurl,
- dataType: 'json',
- data: { Id: id },
- success: function (data) {
- var select = $(".liste-secondaire");
- select.empty();
- $.each(data, function (index, itemData) {
- select.append($('<option/>', {
- value: itemData.Value,
- text: itemData.Text
- }));
- });
- if ($('.liste-secondaire option').length == 2) $('.liste-secondaire option').eq(1).prop('selected', true).trigger("change");
- }
- })
- });
- });
|