Is there any way for set Editable J2ME lwuit combobox?

35 Views Asked by At

Is there any way for set Editable? I need to set editable for combo box in my program. looking immediate answer...

public class customer_addcustomer extends Form implements ActionListener{
MIDlet midlet;

private final ComboBox c1;

public customer_addcustomer(final MIDlet midlet) {

super(".");
this.midlet=midlet;


     c1=new ComboBox();//I need to set editable for combo box

    Container cc=new Container(new FlowLayout(CENTER));

   cc.addComponent(c1);
    this.addComponent(cc);

     }}
1

There are 1 best solutions below

0
Shai Almog On

Codename One has an AutoCompleteTextField which is effectively just that.