Sha256: 6b6ba3adf63b1a3ca1f7d4b62dfbdea2cf3aeb94eca842815c2e92f401d56307

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

$(document).ready(function () {
  'use strict';

  if ($('#product_option_type_ids').length > 0) {
    $('#product_option_type_ids').select2({
      placeholder: Spree.translations.option_type_placeholder,
      multiple: true,
      initSelection: function (element, callback) {
        var url = Spree.url(Spree.routes.option_type_search, {
          ids: element.val()
        });
        return $.getJSON(url, null, function (data) {
          return callback(data);
        });
      },
      ajax: {
        url: Spree.routes.option_type_search,
        quietMillis: 200,
        datatype: 'json',
        data: function (term) {
          return {
            q: {
              name_cont: term
            },
            token: Spree.api_key
          };
        },
        results: function (data) {
          return {
            results: data
          };
        }
      },
      formatResult: function (option_type) {
        return option_type.presentation + ' (' + option_type.name + ')';
      },
      formatSelection: function (option_type) {
        return option_type.presentation + ' (' + option_type.name + ')';
      }
    });
  }
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_backend-2.3.8 app/assets/javascripts/spree/backend/option_type_autocomplete.js.erb
spree_backend-2.4.5 app/assets/javascripts/spree/backend/option_type_autocomplete.js.erb
spree_backend-3.0.0.rc4 app/assets/javascripts/spree/backend/option_type_autocomplete.js.erb