JQuery Select2 - How to select all options

后端 未结 18 777
死守一世寂寞
死守一世寂寞 2020-12-02 10:50

I\'m using jQuery select2 multi select dropdown. I need to select all options in a dropdown from code. Basically there is a Select All checkbox on which this functionality h

18条回答
  •  执念已碎
    2020-12-02 11:24

    There is a description in thread on github. Quoting (https://github.com/ivaynberg/select2/issues/195#issuecomment-13489140 by MortadaAK) which allows you to select everything on ctrl+a

    $(document).on("keypress",".select2-input",function(event){
        if (event.ctrlKey || event.metaKey) {
            var id =$(this).parents("div[class*='select2-container']").attr("id").replace("s2id_","");
            var element =$("#"+id);
            if (event.which == 97){
                var selected = [];
                element.find("option").each(function(i,e){
                    selected[selected.length]=$(e).attr("value");
                });
                element.select2("val", selected);
            } else if (event.which == 100){
                element.select2("val", "");
            }
        }
    });
    

提交回复
热议问题