vote up 0 vote down star

I am using this jquery plugin.

I've looked at the documentation but I'm still not sure how to get the key value from the selected item.

http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/

flag

68% accept rate
I've seen the source at docs.jquery.com/Plugins/Autocomplete I don't think you need to get keys or values for simple working. Plugin takes care of itself. If you have special requirements please elaborate and post code which you are trying. – TheVillageIdiot Jun 30 at 4:45

1 Answer

vote up 0 vote down

You should have some kind of callback function, like this one (those functions are from demo):

function findValueCallback(event, data, formatted) {
    $("<li>").html( !data ? "No match!" : "Selected: " + formatted).appendTo("#result");
}

And then you should add this function as a handler for "result" event on your textboxes:

$(":text, textarea").result(findValueCallback).next().click(function() {
    $(this).prev().search();
});
link|flag
ok. Doesn't that mean I will have to make a call back to the database to find out the key? – Dkong Jun 30 at 5:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.