JobAdvStates state1 = new JobAdvStates(); JobAdvStates state2 = new JobAdvStates(); JobAdvStates state3 = new JobAdvStates();
List<JobAdvStates> selected = new ArrayList<>(); selected.add(state1); selected.add(state3); ListModel<JobAdvStates> model = new ListModel(selected); List<JobAdvStates> allPossible = new ArrayList<>(); allPossible.add(state1); allPossible.add(state2); allPossible.add(state3); new CheckBoxMultipleChoice<JobAdvStates>(id, model, allPossible) Make sure JobAdvStates has good impl of #equals() On Mon, Jan 11, 2016 at 9:24 PM, smoothe19 <[email protected]> wrote: > Can you display an example? > > I essentially want to be able to have some of the checkboxes checked > (based > on a boolean in database) when displayed on the screne > <http://apache-wicket.1842946.n4.nabble.com/file/n4673257/Capture.png> > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Checking-Dechecking-a-checkbox-multiple-choice-tp4673251p4673257.html > Sent from the Users forum mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
