web-dev-qa-db-ja.com

select2を使用して選択可能なoptgroup

Select2を使用してドロップダウンから複数のオプションを選択しましたが、select2が完全なoptgroupを選択することは可能ですか?ユーザーがオプショングループを選択すると、すべての子オプションが選択されます。そして、jQuery Select2。どうすればこれを行うことができますか?

13
Buvin Perera

これは、select要素ではなく、非表示のinput要素を使用してSelect2をバックした場合に可能です。

グループオプションを選択可能にするには、 "id"を指定する必要がありますが、空の文字列である可能性があります。次に、「select2-selecting」イベントを使用して、グループオプションが選択されないようにして、代わりにその子オプションを選択させることができます。

さらに、query関数を提供して、すべての子オプションが選択された後にグループオプションがリストに表示されないようにすることができます。

このように定義されたオプションがある場合:

var FRUIT_GROUPS = [
    {
        id: '',
        text: 'Citrus',
        children: [
            { id: 'c1', text: 'Grapefruit' },
            { id: 'c2', text: 'Orange' },
            { id: 'c3', text: 'Lemon' },
            { id: 'c4', text: 'Lime' }
        ]
    },
    {
        id: '',
        text: 'Other',
        children: [
            { id: 'o1', text: 'Apple' },
            { id: 'o2', text: 'Mango' },
            { id: 'o3', text: 'Banana' }
        ]
    }
];

Select2は次のようにインストルメントできます。

$('#fruitSelect').select2({
    multiple: true,
    placeholder: "Select fruits...",
    data: FRUIT_GROUPS,
    query: function(options) {
        var selectedIds = options.element.select2('val');
        var selectableGroups = $.map(this.data, function(group) {
            var areChildrenAllSelected = true;
            $.each(group.children, function(i, child) {
                if (selectedIds.indexOf(child.id) < 0) {
                    areChildrenAllSelected = false;
                    return false; // Short-circuit $.each()
                }
            });
            return !areChildrenAllSelected ? group : null;
        });
        options.callback({ results: selectableGroups });
    }
}).on('select2-selecting', function(e) {
    var $select = $(this);
    if (e.val == '') { // Assume only groups have an empty id
        e.preventDefault();
        $select.select2('data', $select.select2('data').concat(e.choice.children));
        $select.select2('close');
    }
});

jsfiddle

以下は jsfiddle で、query関数はありません。グループオプションは、子オプションがすべて選択されている場合でも表示されます。

21
John S

私はJohnのコードを使用しましたが、問題はフィルター機能が必要だったので追加しました。 jsfiddle で動作するコードを確認できます。

これはクエリコードです:

         query: function (options) {
            var selectedIds = options.element.select2('val');
            var data = jQuery.extend(true, {}, FRUIT_GROUPS);
            var selectableGroups = $.map(data, function (group) {
                var areAllChildrenSelected = true,
                    parentMatchTerm = false,
                    anyChildMatchTerm = false;
                if (group.text.toLowerCase().indexOf(options.term.toLowerCase()) >= 0) {
                    parentMatchTerm = true;
                }
                var i = group.children.length
                while (i--) {
                    var child = group.children[i];

                    if (selectedIds.indexOf(child.id) < 0) {
                        areAllChildrenSelected = false;
                    };

                    if (options.term == '' || (child.text.toLowerCase().indexOf(options.term.toLowerCase()) >= 0)) {
                        anyChildMatchTerm = true;
                    }
                    else if (!parentMatchTerm) {
                        var index = group.children.indexOf(child);
                        if (index > -1) {
                            group.children.splice(index, 1);
                        };
                    };
                };

                return (!areAllChildrenSelected && (parentMatchTerm || anyChildMatchTerm)) ? group : null;
            });

            options.callback({ results: selectableGroups });
        }
2
mgalindez

最初にあなたの選択にIDを与えます例えば

<select style="width: 95%" id="selectgroup">

そしてクラスをあなたのoptgroupに追加します

 <optgroup value="ATZ" label="Alaskan/Hawaiian Time Zone" class="select2-result-selectable">

そしてこれを追加します

$('#selectgroup').select2({

    }).on('select2-selecting', function (e) {
        debugger;
        var $select = $(this);
        if (e.val == undefined) {
            e.preventDefault();
            var childIds = $.map(e.choice.children, function (child) {
                return child.id;
            });
            $select.select2('val', $select.select2('val').concat(childIds));
            $select.select2('close');
       }
    });

Optgroupをクリックすると、optgroupの下のすべてのオプションが選択されます。

2
Maitri

Select2 v4で、John Sの答えが機能しないことがわかりました( ここを参照 )。 AJAX=を使用してデータを配列としてロードし、回避策を作成しました:

$(document).on("click", ".select2-results__group", function(){
    var input = $(this);
    var location = input.html();
    // Find the items with this location
    var options = $('#select2 option');
    $.each(options, function(key, value){
        var name = $(value).html();
        // The option contains the location, so mark it as selected
        if(name.indexOf(location) >= 0){
            $(value).prop("selected","selected");
        }
    });
    $("#select2").trigger("change");
});

アイテムを場所でグループ化しています。各オプションには、htmlのどこかに場所名が含まれています。 optgroupヘッダーがクリックされるたびに、その場所(ドロップダウンに表示される名前)が表示されます。次に、#select2テーブルのすべてのオプションを調べ、htmlにその場所が含まれているオプションを見つけます。

私はこれがハックな回避策であることを知っていますが、うまくいけば、正しい方向に役立つ/指摘します。

1
jgmackay

すべての子オプションを選択/選択解除するためにoptgroupをクリックする機能を追加するSelect2 v4のプラグインを見つけました。それは私には完璧に働きました。 bnjmnhndrsn/select2-optgroup-select

ベン・ヘンダーソン、ありがとう!

1
Magno Alberto

Select要素を使用するV 4.0.2の1つのオプション:

<select style="width:100%;" id="source" multiple="" tabindex="-1" aria-hidden="true">                 
   <optgroup class="select2-result-selectable" label="Statuses"   >        
      <option value="1">Received</option>                          
      <option value="2">Pending Acceptance</option>                             
   </optgroup>                                 
   <optgroup class="select2-result-selectable" label="Progress" >                
      <option value="6">In Progress</option>
      <option value="7">Follow Up</option>                         
  </optgroup>                                                    
</select>

JS + JQuery:

$(document).ready(function() {

   $('#source').select2();

$(document).on("click", ".select2-results__group", function(){

    var groupName = $(this).html()
    var options = $('#source option');

    $.each(options, function(key, value){

        if($(value)[0].parentElement.label.indexOf(groupName) >= 0){
            $(value).prop("selected","selected");
        }

    });

    $("#source").trigger("change");
    $("#source").select2('close'); 

  });
});

フィドル: https://jsfiddle.net/un1oL8w0/4/

0
Daniel Lemur

提供されている例であるJohn Sは、ほとんどの場合に(V3の場合)本当にうまく機能します。ただし、1つのバグがあります。

選択リストがスクロールするのに十分な長さであると仮定します。下にスクロールしないと利用できないグループ内のアイテムを選択すると、このグループから選択したアイテムの次のアイテムを選択できなくなります。これは、select2のEnsureHighlightVisibleメソッドが不正な動作を開始するためです。これは、使用するセレクターが、グループが常に「選択不可」であるという仮定を使用して作成されているためです。そのため、アイテムを選択しようとするたびにスクロールがジャンプします。

残念ながら、この解決策は本当に良さそうですが、私はそれを削除し、グループIDを使用せずに再実装しました。

$selectEl..on("select2-open", function(event) {
          $(event.target).data("select2").dropdown.on("click", "li.select2-result-unselectable", selectGroup);
          $(event.target).data("select2").dropdown.on("mousemove-filtered", "li.select2-result-unselectable", highlight);
        }).on("select2-close", function(event) {
          $(event.target).data("select2").dropdown.off("click", "li.select2-result-unselectable", selectGroup);
          $(event.target).data("select2").dropdown.off("mousemove-filtered", "li.select2-result-unselectable", highlight);
        });

そして

  // selection of the group.
  function selectGroup(e) {
    var $li = $(this);
    e.preventDefault();
    $select.select2('data', $select.select2('data').concat($li.data("select2Data").children));
    $select.select2('close');
    _this.$field.trigger('change');
  }

  // highlight of the group.
  function highlight(e) {
    if ($(e.target).hasClass("select2-result-unselectable") || $(e.target.parentNode).hasClass('select2-result-unselectable')) {
      e.preventDefault();
      e.stopPropagation();
      $select.data("select2").dropdown.find(".select2-highlighted").removeClass("select2-highlighted");
      $(this).addClass("select2-highlighted");
    }
  }
0
Ilya Shaikovsky

さて、私はこの問題に遭遇し、select2(Select2 4.0.5)が開くたびに、body要素を閉じる前にspan要素が追加されることがわかりました。さらに、span要素内で、IDがulのselect2-X-resultsを追加します。Xはselect2 idです。だから私は次の回避策を見つけました( jsfiddle ):

var countries = [{
  "id": 1,
  "text": "Greece",
  "children": [{
    "id": "Athens",
    "text": "Athens"
  }, {
    "id": "Thessalonica",
    "text": "Thessalonica"
  }]
}, {
  "id": 2,
  "text": "Italy",
  "children": [{
    "id": "Milan",
    "text": "Milan"
  }, {
    "id": "Rome",
    "text": "Rome"
  }]
}];

$('#selectcountry').select2({
  placeholder: "Please select cities",
  allowClear: true,
  width: '100%',
  data: countries
});

$('#selectcountry').on('select2:open', function(e) {

  $('#select2-selectcountry-results').on('click', function(event) {

    event.stopPropagation();
    var data = $(event.target).html();
    var selectedOptionGroup = data.toString().trim();

    var groupchildren = [];

    for (var i = 0; i < countries.length; i++) {


      if (selectedOptionGroup.toString() === countries[i].text.toString()) {

        for (var j = 0; j < countries[i].children.length; j++) {

          groupchildren.Push(countries[i].children[j].id);

        }

      }


    }


    var options = [];

    options = $('#selectcountry').val();

    if (options === null || options === '') {

      options = [];

    }

    for (var i = 0; i < groupchildren.length; i++) {

      var count = 0;

      for (var j = 0; j < options.length; j++) {

        if (options[j].toString() === groupchildren[i].toString()) {

          count++;
          break;

        }

      }

      if (count === 0) {
        options.Push(groupchildren[i].toString());
      }
    }

    $('#selectcountry').val(options);
    $('#selectcountry').trigger('change'); // Notify any JS components that the value changed
    $('#selectcountry').select2('close');    

  });
});
li.select2-results__option strong.select2-results__group:hover {
  background-color: #ddd;
  cursor: pointer;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.5/css/select2.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.5/js/select2.full.min.js"></script>


<h1>Selectable optgroup using select2</h1>
<select id="selectcountry" name="country[]" class="form-control" multiple style="width: 100%"></select>
0
Sofoklis