Re: Ajax request stopped because of precondition check on CheckGroup

2017-01-26 Thread Sven Meier
}}; -- View this message in context: http://apache-wicket.1842946. n4.nabble.com/Ajax-request-stopped-because-of-precondition-check-on- CheckGroup-tp4676865p4676880.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Ajax request stopped because of precondition check on CheckGroup

2017-01-26 Thread Martin Grigorov
== true && bArray[1] == true) > fileClaimButton.setEnabled(true); > else > fileClaimButton.setEnabled(false); > > target.add(fileClaimButton); >

Re: Ajax request stopped because of precondition check on CheckGroup

2017-01-26 Thread SeldonCrisis
target.add(fileClaimButton); }}; -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-request-stopped-because-of-precondition-check-on-CheckGroup-tp4676865p4676880.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: Ajax request stopped because of precondition check on CheckGroup

2017-01-25 Thread SeldonCrisis
-of-precondition-check-on-CheckGroup-tp4676865p4676869.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

Re: Ajax request stopped because of precondition check on CheckGroup

2017-01-25 Thread Sven Meier
Hi, you have to use org.apache.wicket.markup.html.form.*Check* inside your CheckGroup, not Checkboxes. Have fun Sven On 25.01.2017 20:35, SeldonCrisis wrote: Hi, I'm trying to implement some *Ajax* on a *CheckGroup* containing two check boxes. The purpose of this Ajax Event is to enable

Re: Ajax request stopped because of precondition check on CheckGroup

2017-01-25 Thread SeldonCrisis
-of-precondition-check-on-CheckGroup-tp4676865p4676866.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

Ajax request stopped because of precondition check on CheckGroup

2017-01-25 Thread SeldonCrisis
Hi, I'm trying to implement some *Ajax* on a *CheckGroup* containing two check boxes. The purpose of this Ajax Event is to enable/disable a form button depending on whether or not the checkboxes in the CheckGroup are true/false (their models). Unfortunately, I can't get anything in the onUpdate

Re: Check and CheckGroup

2010-05-16 Thread Igor Vaynberg
the jira is open to everyone, please create the ticket yourself. -igor On Fri, May 14, 2010 at 11:13 AM, Zilvinas Vilutis cika...@gmail.com wrote: Overall - the Javadoc does not explain how it supposed to be used, please create a ticket for that. Thank you Žilvinas Vilutis Mobile:  

Re: Check and CheckGroup

2010-05-16 Thread Zilvinas Vilutis
I wasn't aware, that anyone can register to ASF JIRA Done: https://issues.apache.org/jira/browse/WICKET-2873 Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Sun, May 16, 2010 at 12:32 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: the jira is open to everyone,

Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Hi all, Can anyone explain me how do I determine whether the checkbox is checked? Is the modelObject null if not or what? Don't understand that and javadoc's don't help :) What does the list in the CheckGroup model do? what does model in Check do? does the item in the check model require to be

Re: Check and CheckGroup

2010-05-14 Thread Jeremy Thomerson
Have you looked at the examples? http://wicketstuff.org/wicket/forminput/ -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 14, 2010 at 11:22 AM, Zilvinas Vilutis cika...@gmail.comwrote: Hi all, Can anyone explain me how do I determine whether the checkbox is checked? Is the

Re: Check and CheckGroup

2010-05-14 Thread Michael O'Cleirigh
Hi Zilvinas, The Model for a CheckGroup is a CollectionT; I looked in Check.onComponentTag(...) in Eclipse and it shows that it emits the checked tag if the model object of the Check is contained in the CheckGroup's collection. But you should only really need to use the CollectionT returned

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Thanks for quick response! We'll try soon ;) Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 9:33 AM, Michael O'Cleirigh michael.ocleir...@rivulet.ca wrote: Hi Zilvinas, The Model for a CheckGroup is a CollectionT; I looked in

Re: Check and CheckGroup

2010-05-14 Thread Xavier López
If you hava a single checkbox, and only want to know if it's selected, I'd use a Checkbox component instead. You can put it a Boolean Model initialized to whatever and it will come back with the boolean value that will tell you if it's selected. Cheers, Xavier 2010/5/14 Michael O'Cleirigh

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
No, I've got a list http://pastebin.com/KwZq49uG So I add all the items to a collection which is used as a model object for CG, and each of the items to each check. When I call selectedImages.getModelObject() - I get the same list which contains all the items. Still don't get how to resolve a

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Ok, I got it, the list contains only selected items after form submit :) Thank you! Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 9:48 AM, Zilvinas Vilutis cika...@gmail.com wrote: No, I've got a list http://pastebin.com/KwZq49uG So I add

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
The problem was that I was trying to get those values inside onClick method of an AjaxLink, but did not submit the form. I've switched the link to a button and its clear now. Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 9:54 AM, Zilvinas

Re: Check and CheckGroup

2010-05-14 Thread Jeremy Thomerson
or an ajaxsubmitlink -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 14, 2010 at 11:59 AM, Zilvinas Vilutis cika...@gmail.comwrote: The problem was that I was trying to get those values inside onClick method of an AjaxLink, but did not submit the form. I've switched the link

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Overall - the Javadoc does not explain how it supposed to be used, please create a ticket for that. Thank you Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 10:06 AM, Jeremy Thomerson jer...@wickettraining.com wrote: or an ajaxsubmitlink