Hi all,
I am using a SWT combo box in java. The functionality is like whenever a user enter string in the combos text field, based on that string i am filtering the combos list values and displaying the list using combo.setListVisible(true).
Now, after typing the first letter the list gets displayed and the combos text field is losing focus. So inorder to continuously enter the text the user needs to click in the text field after typing each letter. Is there any fix so that the user can continuously enter the text and the list gets displayed after each new letter typed ?
Thanks.