I have a text box that I am the user enters a Supplier Name into. On the blur I want to check a webservice to see if the Supplier exists, and if it does I would like to return the Supplier ID from the webservice and use it to populate another text box.
The webservice is working fine because I am using it fine in other places (with similar code to do autocomplete) It returns the data in JSON and looks like this:
<?xml version="1.0" encoding="UTF-8"?>
-<ArrayOfSuppliers xmlns="http://tempuri.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-<Suppliers>
<SupplierID>1</SupplierID>
<SupplierName>Supplier 1</SupplierName>
</Suppliers>
</ArrayOfSuppliers>
This following code is a mess, and will not work as it is. I hope that it helps explain what I am trying to do, and also so you can help me to understand what I am doing wrong and how the data is returned and usable.
As a starting point I am getting an error that 'response' is undefined. I can see why, but I don't understand enough to know what I need to do to fix it.
$(document).ready(function () {
$("[id$=txtSupplier]").blur(function () {
$.ajax({
type: "POST",
url: "http://localhost:52350/FabRouting/Webservice/SupplierList.asmx/GetSuppliers",
data: "{ 'SupplierSearch': '" + $("[id$=txtSupplier]").val() + "' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
dataFilter: function (data) { return data; },
success: function (data) {
response($.map(data.d, function (item) {
return {
value: item.SupplierName,
id: item.SupplierID
}
}))
},
error: function(e){
$("[id$=lblSupplier]").html("Unavailable");
}
});
}
);
});
After I get this working I still need to know how to take what is returned and set a text box, but I can probably work my way through that if I can get this code to somewhat function.
Edit
I have some autocomplete working with this code:
$(document).ready(function () {
$(".cRejectedOnSDRR").autocomplete({
source: function (request, response) {
$.ajax({
url: "http://localhost:52350/FabRouting/Webservice/ReportList.asmx/GetReports",
data: "{ 'ReportNumberSearch': '" + request.term + "' }",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
dataFilter: function (data) { return data; },
success: function (data) {
response($.map(data.d, function (item) {
return {
value: item.ReportNumber,
id: item.SDRRID
}
}))
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
},
minLength: 1,
select: function (event, ui) {
$("[id$=lblRejectedOnSDRRID]").html(ui.item.id);
},
});
});
And was trying to use that as a basis to do what I mentioned at the top with the blur. I don't understand enough how to simply get and use the data returned from a webservice so I was trying to reverse engineer the autocomplete code to help myself understand it.

XML, notJSON. – Majid Fouladpour Jul 2 '12 at 21:54