RE: how to add select/deselect all checkbox to wicket DataTable

2013-07-18 Thread Paul Bors
The code is not on any repo outside of myco's SVN repo. As I mentioned, it's based on a LabeledAjaxLinkPanel which is nothing but a AjaxLink with a label so you'd have to refactor some of it. Anyhow, here's the Java code: package

RE: how to add select/deselect all checkbox to wicket DataTable

2013-07-16 Thread wicket_user_100
Hi Paul Bors, thanks for you reply. I want to select all results for the entire data table. I think it's a common problem, actually. I've seen many posts in the Internet where people didn't find a simple solution for this task, so I think it will be very useful to share it with the WicketStuff's

Re: how to add select/deselect all checkbox to wicket DataTable

2013-07-15 Thread Sven Meier
CheckBoxPanel checkBoxPanel = new CheckBoxPanel(componentId); Which model do you pass to the CheckBoxPanel? Sven On 07/15/2013 01:28 PM, wicket_user_100 wrote: Hi All, I'm trying to add select All Checkbox to the header of wicket DataTable column, I've read that I need to use CheckGroup

RE: how to add select/deselect all checkbox to wicket DataTable

2013-07-15 Thread Paul Bors
share it with the WicketStuff's extension project if one does not already exits. ~ Thank you, Paul Bors -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Monday, July 15, 2013 10:38 AM To: users@wicket.apache.org Subject: Re: how to add select/deselect all checkbox