https://sirsaula.wordpress.com/2016/01/11/wicket-using-checkboxmultiplechoice/
I guess this means you managed to make it working for your application! Good! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Jan 11, 2016 at 10:12 PM, Martin Grigorov <mgrigo...@apache.org> wrote: > > 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 <sakinl...@justassociates.com> > 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: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> >> >