Bootstrap-select Dropdownlist Not Showing August 12, 2023 Post a Comment I have a bootstrap-select combobox that I fill with data in an ajax call Html: Solution 1: I found a solution. I just needed to refresh my select$('.selectpicker').selectpicker('refresh'); CopySolution 2: success: function (data) { var selectGemeent = $("#selectGemeente1"); selectGemeent.empty(); $('#selectGemeente1').append($("<option></option>"). attr("value", "0"). text("Select")); $.each(data.forEach, function (index, item) { selectGemeent.append($('<option>', { value: item.GemeenteId, text: item.Naam })); ////function }); }, Copyuse it in you ajax success and add your other fileds after text and value Share Post a Comment for "Bootstrap-select Dropdownlist Not Showing"
Post a Comment for "Bootstrap-select Dropdownlist Not Showing"