We are using a combo box on an iPad and we have a bluetooth scanner hooked up so the user can either key in the values or scan a barcode.
When we key in the value from the virtual keyboard no problems.
When we scan the barcode the value shows up momentarily in the control and then gets cleared out.
We added a dataBound event which gets fired when typing in through the keyboard, but does not get fired when the blue tooth scanner puts text into the control.
$("#combobox").kendoComboBox({
dataTextField: "text",
dataValueField: "value",
filter: "startswith",
dataSource: data,
dataBound:getData
});
function getData(e)
{
scannedData = this.text();
console.log(scannedData);
}
Is there a lower level even we can trap to get the value that temporarily shows up in the control?
If we can get the value we can save it and repopulate it to the combo box.