Here I'm fetching multiple values and now i have to get the ids(keys) of these values.
for one im able to get by this code in javascript
html code
<input id="abc" type="text"/>
Javascript code
var autocompleteObj = $("#abc").data("ejAutocomplete");
var x=autocompleteObj.getSelectedItems()[0].id,
but when im fetching multiple values im not getting how to do it.