• 08-10-2023, 19:16:17
    #1
    sorun halledildi....
  • 08-10-2023, 21:26:37
    #2
    Arkadaslar ana sayfa linkini paylasiyorum. sayfayi asagiya indirdiginiz zaman 2 tane ornek alt alta koydum. yapmaya calistigim seyi anlayabilirsiniz. Kullandigim Tom select kutuphanasi Ikinci form'da araba yili secince essek gibi pencere aciliyor. bu kutuphane o pencereyi daha guzel gostermek icin

    https://pyro.design/
  • 10-10-2023, 13:20:53
    #3
    refresh fonksiyonunu tetikleyip deneyebilir misiniz?

    function populateDropdown(data, dropdown) {
      data.forEach(function (item) {
        const option = document.createElement("option");
        option.value = item.make;
        option.textContent = item.make;
        dropdown.appendChild(option);
      });
    
      // Refresh özelliğini çalıştır
      dropdown.refresh(); //ya da refreshItems();
    }
  • 11-10-2023, 04:37:57
    #4
    GundogduYakici adlı üyeden alıntı: mesajı görüntüle
    refresh fonksiyonunu tetikleyip deneyebilir misiniz?

    function populateDropdown(data, dropdown) {
      data.forEach(function (item) {
        const option = document.createElement("option");
        option.value = item.make;
        option.textContent = item.make;
        dropdown.appendChild(option);
      });
    
      // Refresh özelliğini çalıştır
      dropdown.refresh(); //ya da refreshItems();
    }
    malfesef olmadi. asagidan da bazi oneriler geldi ama yapamadim yine

    https://stackoverflow.com/questions/...99619_77255226
  • 15-10-2023, 19:12:07
    #5
    GundogduYakici adlı üyeden alıntı: mesajı görüntüle
    refresh fonksiyonunu tetikleyip deneyebilir misiniz?

    function populateDropdown(data, dropdown) {
      data.forEach(function (item) {
        const option = document.createElement("option");
        option.value = item.make;
        option.textContent = item.make;
        dropdown.appendChild(option);
      });
    
      // Refresh özelliğini çalıştır
      dropdown.refresh(); //ya da refreshItems();
    }
    https://pyro.design/

    sayfayi asagiya kaydirip gorebilirsin destroy(); methodunu kullandim calisti.