Re: how to access component values within a dynamic table?

2011-02-21 Thread hrbaer
No idea how to deal with multiple panels within a listView (because of the name clash)? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-access-component-values-within-a-dynamic-table-tp3310939p3316929.html Sent from the Users forum mailing list archive at

Re: how to access component values within a dynamic table?

2011-02-21 Thread Hans Lesmeister
As already mentioned before: you don't have to care about it. Wicket does. The only thing you do is setting up the property models. In onSubmit you read the model resp the original list. The data entered by the user will be there. Try it! Am 21.02.2011 um 09:00 schrieb hrbaer

requestCycle.getRequestTarget() not giving the target

2011-02-21 Thread Tejash Tarun
Hi, I have this scenario: 1) AjaxTabbePanel has three tabs. 2) Go to 2nd tab 3) Come back to 1st tab 4) one link in 1st tab will take us to some page 5) Click back button of the browser = we wil come back to the page with the AjaxTabbedPanel#1st tab 6) Now click on 2nd tab, then

Wicket pages created by guice

2011-02-21 Thread Dan Griffin
Hi all, I have guice integrated in my wicket app, and it worked fine until I tried to inject a page, when I received java.lang.IllegalArgumentException: Protected method: checkHierarchyChange(Lorg/apache/wicket/Component;) Now, I assume this is because of guice integration pitfall

Re: Just 100K per session? That would be my dream come true! (Anyone here who has tuned session size before?)

2011-02-21 Thread Per
Hi, I am measuring it in a profiler after the request has been completed, but thanks for the hint. In case anyone else is reading, I have been playing with the onComponentTag() and onComponentTagBody() methods on the weekend, and I've been able to reduce my page sizes significantly.

Re: Problems with continueToOriginalDestination?

2011-02-21 Thread N. Metzger
Hi Daniel, I have seen it, too. Strangely enough it worked with 1.4.15 on my last deploy. Now I added Guice in the mix and the redirect works when I deploy with weblogic. When I deploy with OC4J it fails and redirects me to the homepage. Sorry I'm not much help here, but maybe someone else has

Re: Wicket pages created by guice

2011-02-21 Thread Dan Griffin
Sorry for spamming, but I remembered another thing I would like to ask related to this. The reason why I need to inject a page is because I would like to use guice AOP feature to wrap an interceptor around wicket pages. If you can recommend another way to do that , it would be helpful as well.

Re: Wicket pages created by guice

2011-02-21 Thread Martin Grigorov
Take a look at http://code.google.com/p/jolira-tools/wiki/guicier http://code.google.com/p/jolira-tools/wiki/guicierThere is an extended integration with Guice. On Mon, Feb 21, 2011 at 5:16 PM, Dan Griffin dangri...@gmail.com wrote: Sorry for spamming, but I remembered another thing I would

Re: Problems with continueToOriginalDestination?

2011-02-21 Thread N. Metzger
I solved my problem (not sure if that applies to yours). For OC4J I need my web.xml to use the servlet configuration whereas for weblogic I use the filter configuration. Now everything works as intended. Natalie -- View this message in context:

Re: Text after input field

2011-02-21 Thread Alexander Morozov
Try this textField.add(new AbstractBehavior() { public void onRendered(Component component) { component.getResponse().write(text after text input); } }); -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Text-after-input-field-tp3317381p3317612.html Sent from

CheckBoxMultipleChoice.getInput() = NULL after switch to AjaxSubmit

2011-02-21 Thread eugenebalt
When I was doing the Form onSubmit() to do my file download, the CheckBoxMultipleChoice.getInput() was returning correct input selections from my checkbox list. (I have a CheckBoxMultipleChoice field in my form.) As soon as I switched to the AjaxDownload (which does the download + FeedbackPanel

Re: Erase Previous Error Messages in Feedback Panel after Download

2011-02-21 Thread Gabriel Landon
Eugene, If you use an AjaxLink, the validators won't be trigered. Instead, you must use an AjaxButton like that : yourForm.add(new AjaxButton(submitMe) { protected void onSubmit(final AjaxRequestTarget varTarget, final Form? varForm) { yourAjaxDownload.initiate(varTarget); }