jQuery-ui autocomplete, select first item

kikme
kikme
Member
210 Points
10 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: 14170
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
None
2568 Points
74 Posts
         

Use following:

$('selector').autocomplete({selectFirst:true});
Posted On: 16-May-2018 08:24
andro
andro
Member
118 Points
3 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