Hello, I'm find multi identifiable combo box. Is it implement?
5 Answers, 1 is accepted
Hello,
Could you please elaborate a bit what is the desired requirement? If I understand correctly, the ComboBox should select JAPEN either if you type "JPN" or "JAPEN". Am I missing something here?
Looking forward to your reply.
Regards,
Martin
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello,
Sorry, my english skill is poor.
You perfectly understand. ComboBox should select JAPAN either if you type "JPN" or "JAPAN.
Hello,
Thank you for the clarification.
For that purpose, you can use the Change event of the Combobox, to check the typed in text. Then, if it is jpn - set the selection in the Combobox in the following manner:
function onChange(e)
{
if(this.value() == "jpn"){
e.sender.select(function(dataItem) {
return dataItem.text === "JAPEN";
});
}
}
Here's the updated bin example: https://jsfiddle.net/hoctw8ax/3/
Hope this would help.
Regards,
Nencho
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello,
That's what I wanted.
Thank you for your help even though my explanation is lacking.