I was doing some testing on the JavaScript AutoCompleteTextBox and the Angular1 AutoCompleteTextBox and found that the 'highlightsearch' property does not work on the angular1 version of the control.
The JS example can be found here: http://js.syncfusion.com/demos/web/#!/bootstrap/autocomplete/multicolumn
The Angular1 example can be found here: http://ngjq.syncfusion.com/#/autocomplete/multicolumn
JavaScript autocomplete creation:
$('#selectCar').ejAutocomplete({
dataSource: window.gridData, fields: { key: "OrderID", text: "ShipCity" },
highlightSearch: true,
watermarkText: "Select a order", width:"100%", showPopupButton: true, multiColumnSettings:{
stringFormat: "{0} ({3}) ({1})", enable:true, showHeader: true,
columns: [
{ field: "CustomerID", headerText: "CustomerID", },
{ field: "OrderID", headerText: "OrderID" },
{ field: "EmployeeID", headerText: "EmployeeID" },
{ field: "ShipCity", headerText: "ShipCity" }
]}
});
Angular1 autocomplete creation:
<input type="text" id="automulticolumn" ej-autocomplete e-datasource="multicolumndataList" e-fields-key="multicolumnkey" e-fields-text="multicolumntext" e-watermarktext="Select a Order" e-highlightserach="true" e-showpopupbutton="true" e-multicolumnsettings="multicolumncolset" e-width="100%" />
QUESTION:
Is there a way to get the 'highlightsearch' property to work in Angular1, without switching completely over to the JavaScript version of the control?