I am using autocomplete feature in jquery to show the users list intellisense.
for formatItem, i am using FirstName + " " + LastName + " [" + EmailAddress + "]";
for formatResult, i am showing FirstName + " " + LastName
I need to get the selected users userid, how can i get in autocomplete feature?
Say, I have a textbox to enter the name of the user with autocomplete functionality. And a button near the textbox to add the entered user's userid to the database. I need to show only the FirstName + " " + LastName
in textbox and while saving it i need to use userid.
Where can i store the Useridfor the User entered in the textbox?