package org.apache.wicket.examples.compref;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.apache.wicket.examples.WicketExamplePage;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.ListMultipleChoice;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import org.apache.wicket.model.CompoundPropertyModel;
import org.apache.wicket.util.io.IClusterable;
import org.apache.wicket.util.string.Strings;
@link
@author
public class ListMultipleChoicePage extends WicketExamplePage
{
private static final List<String> SITES = Arrays.asList("The Server Side", "Java Lobby", "Java.Net");
private static final List<String> MANY_CHOICES = Arrays.asList(
"Choice1", "Choice2", "Choice3", "Choice4", "Choice5", "Choice6", "Choice7", "Choice8", "Choice9");
public ListMultipleChoicePage()
{
final Input input = new Input();
setDefaultModel(new CompoundPropertyModel<>(input));
FeedbackPanel feedbackPanel = new FeedbackPanel("feedback");
add(feedbackPanel);
Form<Void> form = new Form<Void>("form")
{
@Override
protected void onSubmit()
{
info("input: " + input);
}
};
add(form);
ListMultipleChoice<String> listChoice = new ListMultipleChoice<>("sites", SITES);
form.add(listChoice);
listChoice = new ListMultipleChoice<String>("choices", MANY_CHOICES)
{
@Override
protected boolean isDisabled(String object, int index, String selected)
{
if (index == 1)
return true;
return super.isDisabled(object, index, selected);
}
};
listChoice.setMaxRows(5);
form.add(listChoice);
}
private static class Input implements IClusterable
{
public List<String> sites = new ArrayList<>();
public List<String> choices = new ArrayList<>();
public Input()
{
choices.add("Choice3");
choices.add("Choice4");
choices.add("Choice5");
}
@Override
public String toString()
{
return "sites = '" + listAsString(sites) + "', choices='" + listAsString(choices) + "'";
}
private String listAsString(List<String> list)
{
return Strings.join(", ", list);
}
}
@Override
protected void explain()
{
String html = "<select wicket:id=\"sites\">\n" + " <option>site 1</option>\n"
+ " <option>site 2</option>\n" + "</select>\n" + "<select wicket:id=\"choices\">\n"
+ " <option>choice 1</option>\n" + " <option>choice 2</option>\n" + "</select>";
String code = " // Add a multiple list choice component that uses the model object's 'site'\n"
+ " // property to designate the current selection, and that uses the SITES\n"
+ " // list for the available options.\n"
+ " // Note that our model here holds a Collection, as we need to store\n"
+ " // multiple values too\n"
+ " ListMultipleChoice siteChoice = new ListMultipleChoice(\"sites\", SITES);\n"
+ " form.add(siteChoice);\n"
+ "\n"
+ " ListMultipleChoice manyChoice = new ListMultipleChoice(\"choices\", MANY_CHOICES).setMaxRows(5);\n"
+ " form.add(manyChoice);";
add(new ExplainPanel(html, code));
}
}