I currently have a DropDownList (ver 3.5.0) with the values in it such as:
100003: MEMBRANE-RELATED BIOEFFECTS
100005: MILLIMETER WAVE EFFECTS
101807: ROLE OF FIBRONECTIN IN TUBULOGENESES
$("#project_id").jqxDropDownList({ source: projectSourceDataAdapter, width: 475, theme: theme, placeHolder: "${dynamic_placeholder}",
filterable: true, valueMember: "id", displayMember: "text"
});
I want to be able to type FIBRO in the filter and have it bring up the “101807: ROLE OF FIBRONECTIN IN TUBULOGENESES” as a match. Right now, the filter only works if I look for “101”. Is there any way to make it match on a substr rather than on just the beginning of the string?
Thanks,
Andrea