how to add the following choices as items like item,item1,item2,item3 and so on without using choicegroup in j2me
technology = new ChoiceGroup("Select Technology Which You Know", Choice.MULTIPLE);
technology.append("JAVA", null);
technology.append("J2ME", null);
technology.append("J2EE", null);
technology.append("JSF", null);
form.append(technology);

Reply With Quote




