'Two autocomplete function in a single input text
I have two autocomplete function , that work fine for different textboxes , I want to add these two two autocomplete function values in single text box ,
1st function :
$(function () {
$(".AccountSuplier").autocomplete({
source: '/AccAddAcount/AutoSearchSupplierAcc'
});
});
//that I used with textbox like this :
<input asp-for="Supplier" class="form-control AccountSuplier">
2nd function :
$(function () {
$(".AutoEmplyee").autocomplete({
source: '/EmpAddEmp/AutoSearchEmploy'
});
});
<input asp-for="Emplyee" class="form-control AutoEmplyee">
these two function work fine and give list of Supplier and Emplyees in different textboxes , Now I want to add these list in single textbox,
// code in controller for employ : (for Supplier is same like employ )
[HttpGet]
public IActionResult AutoSearchEmploy()
{
var name = HttpContext.Request.Query["term"].ToString();
PaginatedList<EmpAddEmploy> units = _EmpAddEmpRepo.GetItems("Name", SortOrder.Ascending, "", 1, 20);
var data = units.Where(j => j.EmployeeName.ToLower().Contains(name.ToLower())).Select(j => j.EmployeeName);
return Ok(data);
}
Solution 1:[1]
You would need to manually combine the two queries. Without testing, it would look something like this:
$(function () {
$(".SupplierEmployee").autocomplete({
source: function (request, response) {
let supplier = $.get("/AccAddAcount/AutoSearchSupplierAcc", {
term: request.term
});
let employee = $.get("/EmpAddEmp/AutoSearchEmploy", {
term: request.term
});
$.when(supplier, employee).done(function (data1, data2) {
response(data1.concat(data2));
});
}
});
});
<input asp-for="Supplier" class="form-control SupplierEmployee">
Solution 2:[2]
I try this but it work only for 1st class and give list of Supplier
<input asp-for="User" class="form-control AccountSuplier AutoEmplyee">
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Jeff B |
Solution 2 | Farrukh Azad |