Re: Ajax modal window does not allow submit form under open browsers

2011-03-20 Thread Sven Meier
.. and please vote for WICKET-3404 if you think the need for this additional form is just annoying. Sven On 03/20/2011 01:01 AM, Pedro Santos wrote: To submit a form inside a modal window you must enclose it by a form in the main panel and use an AJAX submit component. Please open a ticket +

RE: Ajax modal window does not allow submit form under open browsers

2011-03-20 Thread Chris Colman
.. and please vote for WICKET-3404 if you think the need for this additional form is just annoying. +1 from me! I find having to wrap a modal in a form quite annoying. - To unsubscribe, e-mail:

Re: Visural Wicket - Maven

2011-03-20 Thread Josh Kamau
Hi. I use visural wicket with maven and havent had problems so far. Here is a section of my pom.xml. If it doesnt work, then may be something changed after my maven had already done the download. dependency groupIdcom.visural/groupId

Getting data from dynamically constructed elements

2011-03-20 Thread tech7
Hi to everyone, I have a loop and inside this loop; i am constructing checkgroups in the listview but I dont know how to get data after the user has selected.Do you have any idea?I need your suggestions. With my best regards. - Developer Wicket Java JSP -- View this message in context:

Re: Getting data from dynamically constructed elements

2011-03-20 Thread James Carman
What model is your checkgroup bound to? On Mar 20, 2011 2:41 PM, tech7 techlove...@gmail.com wrote: Hi to everyone, I have a loop and inside this loop; i am constructing checkgroups in the listview but I dont know how to get data after the user has selected.Do you have any idea?I need your

Re: Getting data from dynamically constructed elements

2011-03-20 Thread tech7
My code is like that: propertyLoop1 = new Loop(properties1, propertyList1.size()) { @Override protected void populateItem(final LoopItem propertyItem) { final Property property1 =

Re: Getting data from dynamically constructed elements

2011-03-20 Thread Martin Grigorov
in your case: propertyLoop1.get(someIterationAsString).get(groyp).getModelObject() but better pass a List to the itemsGroup which is reachable without using the tree as above e.g. ListList groupModels = ...; and then: final CheckGroup itemsGroup = new CheckGroup(group,

Re: Getting data from dynamically constructed elements

2011-03-20 Thread tech7
Thank you for your response. I got this error when I tried to run your suggestion: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.ArrayList.RangeCheck(ArrayList.java:547) at java.util.ArrayList.get(ArrayList.java:322) at

Re: Adding a IRenderer interface ?

2011-03-20 Thread jcgarciam
What about: IChoiceRenderer ?? On Fri, Mar 18, 2011 at 10:52 AM, zedros [via Apache Wicket] ml-node+3387253-1092151999-65...@n4.nabble.com wrote: hi I was refactoring some code (to go from DropDownChoice to AutoCompleteEdit) when I stumbled upon there's no interface just about how to

RE: Ajax modal window does not allow submit form under open browsers

2011-03-20 Thread Brown, Berlin [GCG-PFS]
OK, so the patch just scraps the form in the modal window. -Original Message- From: Chris Colman [mailto:chr...@stepaheadsoftware.com] Sent: Sunday, March 20, 2011 8:36 AM To: users@wicket.apache.org Subject: RE: Ajax modal window does not allow submit form under open browsers .. and

Portlet Development with wicket

2011-03-20 Thread Josh Kamau
Team; Does wicket support development of portlets ? I cant find much information by googling. Josh