简体   繁体   中英

Aria attributes not be added to results

I am using select 2 version 4.0.2 and have created a select to look up remote data via ajax.

I am getting the data ok but when the results are rendered, the aria-selected attribute is not being added and therefore I can not select any of the options.

I believe it may be to do with the templateResult and templateSelection but I don't know what needs to be changed.

Jquery:

$("#select2").select2({
  theme: "bootstrap",
  ajax: {
    url: "/search/games",
    dataType: 'json',
    delay: 250,
    data: function (params) {
      return {
        q: params.term, // search term
        type: "suggest"
      };
    },
    processResults: function (data, params) {
      return {
        results: data.games,
      };
    },
    cache: true
  },
  escapeMarkup: function (markup) { return markup; },
  minimumInputLength: 3,
  templateResult: formatResult,
  templateSelection: formatSelection
});

function formatResult(game) {
  markup = "<p>" + game.name + "</p>";
  return markup;
};

function formatSelection(game) {
  markup = "<p>" + game.name + "</p>";
  return markup;
}

Form:

= form_for [:member,@event], :html => {:class => "formtastic form-horizontal"} do |f|
  %fieldset
    %div{:class => "control-group"}
      = f.label :game_id, :class => "control-label"
      %div{:class => "controls"}
        = f.select :game_id, "", {}, :class => "form-control"

Turns out when processing the results, the data has to be mapped to an id and text attribute for it to be recognised:

processResults: function (data, params) {
  return {
    results: jQuery.map( data.games, function( game ) {
      var arr = {id:game.name,text:game.name};
      return arr;
    }),
  };
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM