Hi nagaveni,
The text is not highlighted, cause renderer callback is called.
If you want to highlight the results you have to change the renderer.
Here is simple example:
renderer: function (index, label, value) {
var inputValue = $("#jqxcombobox input").val();
var item = dataAdapter.records[index];
if (item != null) {
var label = item.name.toLowerCase().replace(inputValue.toLowerCase(), "<b>" + inputValue.charAt(0).toUpperCase() + inputValue.slice(1).toLowerCase() + "</b>") + "(" + item.countryName + ", " + item.adminName1 + ")";
return label;
}
return "";
},
Best Regards,
Ivailo Ivanov
jQWidgets Team
http://www.jqwidgets.com