I am implementing jQuery autocomplete in a text box and I am curious if my code looks right.
Here is my textbox from my view.
<div class="editor-field">
@Html.TextBoxFor(model => model.Customer.CustomerName,
new {id = "CustByName" })
</div>
Here is the javascript to implement autocomplete for the textbox id.
$(document).ready(function () {
$("#CustByName").autocomplete({
source: function (request, response) {
$.ajax({
url: "/Cases/FindByName", type: "GET", dataType: "json",
data: { searchText: request.term, maxResults: 10 },
success: function (data) {
response($.map(data, function (item) {
return {
label: item.CustomerName,
value: item.CustomerName,
id: item.CustomerID }
}))
}
})
}
});
});
Here is the controller action called by the javascript:
public JsonResult FindByName(string searchText, int maxResults)
{
CustomerFind find = new CustomerFind();
var result = find.FindCustomerByName(searchText, maxResults);
return Json(result);
}
Here is the function in CustomerFind called FindCustomerByName:
internal List<Models.Customer>
FindCustomerByName(string searchText, int maxResults)
{
List<Models.Customer> cust = new List<Customer>();
var result = from c in cust
where c.CustomerName.Contains(searchText)
orderby c.CustomerName
select c;
return result.Take(maxResults).ToList();
}
Here is what I have in my layout cshtml file for script reference.
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.20/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.20/jquery-ui.min.js" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/rls-functions.js")" type="text/javascript"></script>"
Everything seems to work ok, except the LINQ query in FindCustomerByName does not return any records even though they exist.
Can anyone suggest what might be the issue or suggest a better way to do autocomplete?
I have looked at numerous examples and cobbled this together.
findbynameaction method and see if it gets the right arguments. (2) Use firebug+firefox or Chrome(Press F12). Inspect the network to see if you request and response is generated correctly. – gideon Jun 2 '12 at 19:49