Having trouble getting help?
Contact Support
Contact Support
Templates
14 Dec 20172 minutes to read
The suggestion list can be customized based on different needs using templates. The desired templates can be defined using the template property.
<input type="text" id="autocomplete" />
<script type="text/javascript">
/* Local Data */
var mobileList = [
{ pName: "Galaxy Grand 2", quantity: "3" },
{ pName: "Galaxy S6", quantity: "5" },
{ pName: "IPhone S6", quantity: "8" },
{ pName: "IPod Mini", quantity: "3" }, ];
$('#autocomplete').ejAutocomplete({
dataSource: mobileList,
fields: { text: "pName" },
template: "<div><div class='product-text'>${pName}</div> <span class='product-quantity' style='font-size:10px'> Quantity : ${quantity}</span></div>"
});
</script>