Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread Igor Vaynberg
not right now no. add an rfe and we might take that usecase into consideration -igor On 1/1/07, TH Lim <[EMAIL PROTECTED]> wrote: Understood. Is there an easy way for checkboxselector to select the users from the paged list on the visible page and update the checkgroup with all these "visib

Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread TH Lim
Understood. Is there an easy way for checkboxselector to select the users from the paged list on the visible page and update the checkgroup with all these "visible" users on the server side? igor.vaynberg wrote: > > well, the purpose of the checkboxselector is to be a client side widget to >

Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread Igor Vaynberg
well, the purpose of the checkboxselector is to be a client side widget to select all visible checkboses. there is no automatic way to select all checkboxes on the serverside and that is why it doesnt do that. imagine a paged list of users with a checkbox to select all users. without user interve

Re: [Wicket-user] CheckGroupSelector with CheckBox

2007-01-01 Thread TH Lim
Thanks. I replaced checkgroupselector with checkbox like what you have described and had it working. However, I find it strange not to extend checkgroupselector to cover server side. Can you share with me what is the reason for the team not to cover that? Or is it irrelevant to do so? igor.vay

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-12-31 Thread Igor Vaynberg
actually when you override wantonselectionchangednotification() it is not an ajax request, it is a regular request that repaints the page. checkgroupselector was made to select checkboxes on the clientside only exclusively, if you want to do it via a roundtrip it is actually simple add a checkbo

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-12-31 Thread TH Lim
Hi, I have a similar situation where I have CheckGroupSelector to select / unselect all checkboxes in the list view. I have overrided CheckGroup.wantOnSelectionChangedNotifications() to return true. Therefore, checking and unchecking each checkboxes sends an AJAX respond back to the server. Howev

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-10-05 Thread Johan Compagner
can't you override:protected boolean wantOnSelectionChangedNotifications()    {        return false;    }of CheckGroup?johanOn 9/27/06, Decebal Suiu <[EMAIL PROTECTED]> wrote: Can I use CheckGroupSelector with CheckBox (insteadCheck) ?Because I want to be notified when a selection waschanged (Chec

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-09-28 Thread Nino Wael
Sorry for this previous mail its out of context and wrong. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 28. september 2006 13:59 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] CheckGroupSelector with CheckBox Hmm You

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-09-28 Thread Nino Wael
Hmm You cant just use the checkgroupselectors.onchange? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Decebal Suiu Sent: 27. september 2006 21:01 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] CheckGroupSelector with CheckBox Can I use

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-09-28 Thread Nino Wael
Why dont you just use the CheckGroup.onchange ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Decebal Suiu Sent: 27. september 2006 21:01 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] CheckGroupSelector with CheckBox Can I use

[Wicket-user] CheckGroupSelector with CheckBox

2006-09-27 Thread Decebal Suiu
Can I use CheckGroupSelector with CheckBox (instead Check) ? Because I want to be notified when a selection was changed (CheckBox.onSelectionChanged)? Thanks, Decebal __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around