Disable with select2 does not work.

365 Views Asked by At

I'm using version 3.5.1. I've tried using both

enable: false

and

disable: true 

but neither seems to work. Here's a snippet of my code.

  var select2Node = $element[0].firstChild;
  $(select2Node).select2({
    data: choices,
    // Suppress the search box.
    minimumResultsForSearch: -1,
    allowClear: false,
    width: '200px',
    disable: true,
    formatSelection: function(object, container) {
      return $filter('truncateAtFirstInput')(object.id);
    }
  });
1

There are 1 best solutions below

0
On BEST ANSWER

I don't think there is an "enable" or "disable" option for the Select2 constructor. Instead, you can use the "enable" function, like this:

$(select2Node).select2({
    ...
}).select2("enable", false);