jQuery-ui autocomplete, select first item

kikme
kikme
50 Points
20 Posts

I'm using jquery autocomplete as:

    .autocomplete({
          source: function (request, response) {
              response($.ui.autocomplete.filter(
            data, extractLast(request.term)));
          },
          multiselect: true,
          selectedControlId: 'txtKeyword_NewQuestion'
      });

I want when search for any keyword the  first row should automatically selected. So that when ever user search for any keyword, he need to just press enter button to select in autocomplete box.

Views: 13765
Total Answered: 2
Total Marked As Answer: 0
Posted On: 12-May-2018 22:07

Share:   fb twitter linkedin
Use $('selector').autocomplete({autoFocus:true});
 - Rahul Maurya  16-May-2018 08:40
Answers
Smith
Smith
Moderator
858 Points
169 Posts
         

Use following:

$('selector').autocomplete({selectFirst:true});
Posted On: 16-May-2018 08:24
andro
andro
28 Points
9 Posts
         

Use this one:

.autocomplete({
          source: function (request, response) {
              response($.ui.autocomplete.filter(
            data, extractLast(request.term)));
          },
          multiselect: true,
          autoFocus: true,
          selectedControlId: 'txtKeyword_NewQuestion'
      });
Posted On: 16-May-2018 08:44
 Log In to Chat