In this example http://jsfiddle.net/jqwidgets/N622s/
Is ther ean example that I am missing on how eould I change the set new value button to pick one of the countries (ie Belize) instead of just updating the value of the text box?
I have the following pulling from a json dataadaptor
$(“#eCapaRespEmp”).jqxInput({
source: searchActiveEmpAdapter,
placeHolder: vEmpSearchPrompt,
displayMember: “s_EmpSearchStr”,
valueMember: “s_EmpID”,
width: 225,
height: 20
});`
I’d like to say
if (myEmpID != ”) {
//set (“#eCapaRespEmp to the matchint s_empid in the list and have it display s_empSearchStr like the picked it
};`
Thanks!