Laravel Livewire Dependent Dropdown with Select2

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 19

  • @tonyxhepaofficial
    @tonyxhepaofficial  11 หลายเดือนก่อน +5

    Laravel Livewire Dependent Dropdown with Select2

  • @ZahraNurwantia
    @ZahraNurwantia 5 หลายเดือนก่อน +2

    thanks bro, i was honestly confused by the livewire 3 updates,
    the method are so much different to implement select2 than the previous livewire version

  • @jersonmoreno7618
    @jersonmoreno7618 11 หลายเดือนก่อน +1

    It's a nice example. Thanks for that!

  • @FaizanAmin_Faizi
    @FaizanAmin_Faizi 10 หลายเดือนก่อน

    Thanks a lot tony for making this on my request 😊

  • @davidmutua6971
    @davidmutua6971 7 หลายเดือนก่อน +1

    Livewire v3 not working with multiple attribute. The multiple select is distorted. Please make a demo to demo multiple in livewire v3

  • @JCPatagonia
    @JCPatagonia 7 หลายเดือนก่อน

    Tks! Its posible use select2 in modal component?

  • @devhammed
    @devhammed 11 หลายเดือนก่อน

    Nice tutorial!
    But you don't need the document ready since Livewire will execute the script only when it's about to work on the component and instead of adding ID to the select element, I would use a data- attribute or a class instead (e.g data-select-input or .select-input) to avoid using names that can result in invalid selectors (e.g Postal Code) and the script will be like:
    const select = $wire.$el.querySelector('[data-select-input]'); // or $wire.$el.querySelector('.select-input');
    $(select).select2();
    $(select).on('change', function (event) {
    $wire.$set('value', event.target.value);
    });

  • @appimedi9738
    @appimedi9738 6 หลายเดือนก่อน

    hi tony, what is the reason why you don't like jquery?

  • @Darkenfaith
    @Darkenfaith 3 หลายเดือนก่อน

    Hi, how to get selected data and store it to database? I've added wire:model on select tag but always return null when I tried to get the data

  • @ClementLanot
    @ClementLanot 11 หลายเดือนก่อน +1

    Can u do it with TomSelect?

  • @michaelbarasa1569
    @michaelbarasa1569 11 หลายเดือนก่อน +1

    Can you do one for updating

  • @gaton313
    @gaton313 11 หลายเดือนก่อน

    thank you. need for multi select dropdown also.

  • @-_-balen-_-9722
    @-_-balen-_-9722 11 หลายเดือนก่อน

    thank you

  • @asdf072xxp
    @asdf072xxp 3 หลายเดือนก่อน

    Do you (anyone) know how to get it to select initialized values correctly? If in this example, you initialize public $selectedCountry = 2, the Select2 element won't display the correct country (although it will report the correct value in the console).
    Anyone have a fix?

  • @krekas
    @krekas 11 หลายเดือนก่อน +3

    Please don't use select2. There are better alternatives these days without jquery

    • @DanMlayah
      @DanMlayah 11 หลายเดือนก่อน +1

      Examples of these alternatives ?

    • @krekas
      @krekas 11 หลายเดือนก่อน +4

      tom select, virtual select, choicesjs

    • @yusufbakkali3410
      @yusufbakkali3410 10 หลายเดือนก่อน +1

      yeah tom select is good and better of select2 for me