Autofill supported with AutoComplete
10 Mar 20221 minute to read
The AutoComplete supports the autofill behavior with the help of autofill property. Whenever you change the input value, the AutoComplete will autocomplete your data by matching the typed character. Suppose, if no matches were found, then AutoComplete doesn’t suggest any item.
In the below sample, showcase that how to work autofill
with AutoComplete.
<div class="control-wrapper">
<div id="default" style='padding-top:75px;margin:0 auto;width:250px;'>
<ejs-autocomplete id="country" datasource="@ViewBag.data" placeholder="e.g. India" autofill="true" popupheight="220px">
<e-autocomplete-fields value="Name"></e-autocomplete-fields>
</ejs-autocomplete>
</div>
</div>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using WebApplication1.Models;
namespace WebApplication1.Controllers
{
public class AutoCompleteController : Controller
{
public ActionResult autofill()
{
ViewBag.data = new Countries().CountriesList();
return View();
}
}
}