Re: Saving checked choices from CheckGroup

2013-05-02 Thread Merlijn
} public List> getSearchableTypes() { return types; } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Saving-checked-choices-from-CheckGroup-tp4658408p4658490.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Saving checked choices from CheckGroup

2013-05-01 Thread Paul Bors
w Button("saveButton") { > @Override > public void onSubmit() { > super.onSubmit(); > } > }; > form.add(saveButton); > add(form); > } > > public List> getSearchableTypes() { >

Re: Saving checked choices from CheckGroup

2013-04-30 Thread Merlijn
super.onSubmit(); } }; form.add(saveButton); add(form); } public List> getSearchableTypes() { List> searchableTypes = new ArrayList>(); for (IModel> type : types) { searchableTypes.add(type.getObject()

Re: Saving checked choices from CheckGroup

2013-04-30 Thread Martin Grigorov
message in context: > http://apache-wicket.1842946.n4.nabble.com/Saving-checked-choices-from-CheckGroup-tp4658408.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: use