For a while we had some weird behaviour in the AutoCompleteTextField on iOS. Today, I narrowed it down to a simple program. If you input a number in the TextField, the keyboard switches back to non-numbers. You also see two cursors. And when you scroll the suggestion popup gets detached.
A small sample
Form f = new Form(new BorderLayout());
Container c = new Container(new BoxLayout(BoxLayout.Y_AXIS));
c.addComponent(new AutoCompleteTextField(new String[] {"Gerben", "Steve", "Shai"}));
c.setScrollableY(true);
f.addComponent(BorderLayout.CENTER, c);
f.show();
For a while we had some weird behaviour in the AutoCompleteTextField on iOS. Today, I narrowed it down to a simple program. If you input a number in the TextField, the keyboard switches back to non-numbers. You also see two cursors. And when you scroll the suggestion popup gets detached.
A small sample