Hello,
I am using the Autocomplete control with a text input. Users can enter characters in two ways, either directly type it in or use an on screen keyboard and click on keys to inserts characters in the text input control (multi-language keyboards). When I type the characters directly in the textbox the autocomplete works fine and displays the list of characters.
In the on screen keyboard mode, I trigger both Keypress and Keydown events for the input control by clicking on each key on keyboard picture and pass the characters through those events. As a result the characters appear correctly and I even can see that autocomplete is triggered and queries the server and obtains a list of words but the list never shows up and there is no dropdown.
Here is the function I use to insert characters by passing character code:
I used both events to make sure I am covering every possibilities.
Could you let how can I force the autocomplete to display the list of choices that it is obtained?
Thanks
Ron
I am using the Autocomplete control with a text input. Users can enter characters in two ways, either directly type it in or use an on screen keyboard and click on keys to inserts characters in the text input control (multi-language keyboards). When I type the characters directly in the textbox the autocomplete works fine and displays the list of characters.
In the on screen keyboard mode, I trigger both Keypress and Keydown events for the input control by clicking on each key on keyboard picture and pass the characters through those events. As a result the characters appear correctly and I even can see that autocomplete is triggered and queries the server and obtains a list of words but the list never shows up and there is no dropdown.
Here is the function I use to insert characters by passing character code:
function
addcharto(code) {
var
control = $(
'#SearchWord'
);
var
ed = $.Event(
"keydown"
);
var
ep = $.Event(
"keypress"
);
ed.which = code;
ep.which = code;
control.trigger(ed);
control.trigger(ep);
}
Could you let how can I force the autocomplete to display the list of choices that it is obtained?
Thanks
Ron