java - ObjectChoiceField not dropping down -
i'm trying create objectchoicefield passing in string array. creates drop down box , shows first value doesn't drop down when click on it. no errors. testing on 9500 os 5.0.
ocf = new objectchoicefield("", getprofessions("specialty_nurse.xml")); proflabel = new labelfield("please choose profession"); add(new labelfield("")); add(proflabel); add(new separatorfield()); choicelistener mychoicelistener = new choicelistener(); ocf.setchangelistener(mychoicelistener); add(ocf);
solved. navigationclick() method being overridden had check click on objectchoicefield. post code if needs it. thanks!
Comments
Post a Comment