I have 3 components to be displayed in the dropdown source where as i can assign a displaymember and valuemember. the search is doing search only on displaymember, I want to search ith all the items displayed in the dropdown
$(‘#combobox’).jqxComboBox({ selectedIndex: -1, source: dataAdapterAC, displayMember: “Name”, valueMember: “ID”, height: 25, width: 270,searchMode: “containsignorecase”,
renderer: function (index, label, value) {
var datarecord = dataAC[index];
var table = ‘<table style=”min-width: 150px;”><tr><td><b>Name : </b>’ + datarecord.Name + ‘</td></tr><tr><td><b>ID : </b>’ + datarecord.ID + ‘</td></tr><tr><td><b>Description : </b>’ + datarecord.Description + ‘</td></tr></table>’;
return table;
}
});
Now i want to search either of all the 3 values Name, ID and description. Not to restrict the user only with Name.