Skip to main content

Search and Top Navigation

#15383 new bug ()

Opened June 18, 2020 10:51AM UTC

Last modified June 18, 2020 10:51AM UTC

AutoComplete inside keyup event not working properly

Reported by: Arunberlin Owned by:
Priority: minor Milestone: none
Component: ui.autocomplete Version: 1.12.1
Keywords: Cc:
Blocked by: Blocking:
Description

Autocomplete list doesn't shows up when first key is entered. The list is shown only after entering the next key. Sample code is given below

$("#AutoComplete").on('keyup', function (event)

{

if ($("#AutoComplete").val().length <= 5 )

{

GetData();

}

});

function GetData()

{

$.ajax({

type: "POST",

url: "../Controller/function",

contentType: "application/json; charset=utf-8",

data: '{"key":"' + $("#AutoComplete").val() + '"}',

dataType: "json",

success: function (data)

{

var output= $.map(data, function (item)

{

return {

label: item.Name,

value: item.ID

};

});

$("#AutoComplete").autocomplete({

source: output,

autoFocus: true,

});

}

});

}

Attachments (0)
Change History (0)