Can we have multiple drop down in a single form.if u have a solution please give it to me
Can we have multiple drop down in a single form.if u have a solution please give it to me
Hi praran910,
have you tried using ChoiceGroup items with Choice.POPUP type?
Pit
Hi,
Create instance of ChoiceGroup and use Choice.MULTIPLE
ChoiceGroup size = new ChoiceGroup("Select Toppings", Choice.MULTIPLE);
size.append("Mushrooms", null);
size.append("Black Olives", null);
size.append("Extra Cheese", null);
size.append("Pineapple", null);
Thanks
Ravi