Dan,
Please excuse my ignorance on JQuery. From Jorn's sample web page, it
appears that the findValueCallback function is executed when the user
makes a selection from the drop down. So I took an earlier suggestion
you made and tried to combine it with this suggestion of yours to
accomplish what I was after. My code is below but it does not work as
I had hoped. Can you show me the error of my ways?
function findValueCallback(event, data, formatted) {
// Original code from Jorn's page.
// $("<li>").text( !data ? "No match!" : "Selected: " +
formatted).appendTo("#result");
$("#ItmDesc").html(data[1]);
$("#OnHandQty").html(data[2]);
$("#Price").html(data[3]);
}
On Jul 13, 8:42 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> As you can see, the selected data comes back as an array in the data
> argument.
>
> data[0] = Item
> data[1] = Item Description
> data[2] = Qty On Hand
> data[3] = Price
>
> -Dan- Hide quoted text -
>
> - Show quoted text -