combobox angular with image and text code example
Example 1: To set HTML attribute and css styles in html helper control in mvc
@Html.ActionLink(emp.Name, "EmployeeDetail", new { Id = emp.Id },
new { target="_blank",
style="font-weight: bold;color: red;"})
Example 2: how to display image in html from json object
for (var i = 0; i < boldStuffs.length; i += 1) {
var fruit = getRandomItem(fruitsArray);
boldStuffs[i].innerHTML = fruit.name + '<img src="'+fruit.image+'">';
}