<div id='jqxComboBox'></div>
var source = [
"Affogato",
"Americano",
"Bicerin",
"Breve",
"Café Bombón",
"Café au lait",
"Caffé Corretto",
"Café Crema",
"Caffé Latte"
];
// Create a jqxComboBox
$("#jqxComboBox").jqxComboBox({
source: source,
theme: 'energyblue',
width: '200px',
height: '25px',
searchMode:'containsignorecase',
autoComplete:true
});
Hallo,
step 1 I write ‘b’
step 2 I select ‘Breve’ on the dropDownMenu
step 3 I clean the text, to write a new entry, for example ‘B’
step 4 I lost focus on control
I’d like when I lost the focus on control, on the text show me the last select item ‘Breve’
merci