Re: AW: AW: DropDownChoice model is not updated when wantOnSelectionChangedNotifications is overriden

2011-11-12 Thread wholalotta
Any suggestion? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DropDownChoice-model-is-not-updated-when-wantOnSelectionChangedNotifications-is-overriden-tp4031368p4033965.html Sent from the Users forum mailing list archive at Nabble.com.

Re: AW: AW: DropDownChoice model is not updated when wantOnSelectionChangedNotifications is overriden

2011-11-12 Thread Sven Meier
Have you taken a look at org.apache.wicket.examples.forminput.FormInput ? On 11/12/2011 10:23 AM, wholalotta wrote: Any suggestion? -- View this message in context:

Model isn't updated on AJAX submit link invocation

2011-11-12 Thread Sebastian80
Hi there, I'm trying to implement an AJAXfied Wicket list view. On my research I stumbled upon the code on http://www.oktech.hu/kb/adding-and-removing-rows-wicket-listview-via-ajax and modified it a bit. The model is not updated properly. So whenever a value is entered in a text field, it is

Re: DI in wicket

2011-11-12 Thread James Carman
This is a Spring issue, not a Wicket issue. You're not configuring Spring correctly. If you want a working example that uses Spring/Hibernate, you can try Wicketopia's example application. It has everything configured correctly out of the box.

Re: Model isn't updated on AJAX submit link invocation

2011-11-12 Thread Станислав Савульчик
Hi, The form components aren't updated because form processing for AjaxSubmitLink is set to false. See the javadoc for AjaxSubmitLink#setDefaultFormProcessing. BTW, when using ListView for rendering form components consider reading WARNING section in javadoc for ListView class. - Исходное

CryptoMapper - Error decoding text

2011-11-12 Thread Phill
Hi, I'm migrating a Wicket 1.4 app that uses CryptedUrlWebRequestCodingStrategy to 1.5.2 and I'm having some issues: In my Application init() before I mount any pages I've got: getSecuritySettings().setCryptFactory(new KeyInSessionSunJceCryptFactory()); setRootRequestMapper(new

Re: AW: AW: DropDownChoice model is not updated when wantOnSelectionChangedNotifications is overriden

2011-11-12 Thread wholalotta
Yes I checked the FormInput example..The only difference is that example has custem dropwdown component which stated in the same class..Also it uses the following in onSelectionChanged method.. // force re-render by setting the page to render to the bookmarkable // instance, so that the page will

Re: Migrating a ResourceStreamRequestTarget to a ResourceStreamRequestHandler (2)

2011-11-12 Thread hfriederichs
I solved the issue by many trial and error sessions. Maybe I can spare someone else this ordeal. In Firefox an Chrome it now works as in IE, by adding this statement in the init() of my WicketApplication: getResourceSettings().setDefaultCacheDuration(Duration.NONE); Regards, Hans Friederichs

Re: CryptoMapper - Error decoding text

2011-11-12 Thread Igor Vaynberg
this: setRootRequestMapper(new CryptoMapper(getRootRequestMapper(), this)); should be the last thing you do in your application#init() -igor On Sat, Nov 12, 2011 at 6:45 AM, Phill ph...@leadseeker.co.uk wrote: Hi, I'm migrating a Wicket 1.4 app that uses CryptedUrlWebRequestCodingStrategy

Re: CryptoMapper - Error decoding text

2011-11-12 Thread Phill
Thanks, I had put setRootRequestMapper(..) first after reading https://issues.apache.org/jira/browse/WICKET-4139 However putting it last does not seem to solve the problem, I can replicate the error with a pristine 1.5.2 quickstart and just changing the init() to: public void init() {

Re: CryptoMapper - Error decoding text

2011-11-12 Thread Igor Vaynberg
have you tried with 1.5.3? -gior On Sat, Nov 12, 2011 at 10:27 AM, Phill ph...@leadseeker.co.uk wrote: Thanks, I had put setRootRequestMapper(..) first after reading https://issues.apache.org/jira/browse/WICKET-4139 However putting it last does not seem to solve the problem, I can replicate

Re: CryptoMapper - Error decoding text

2011-11-12 Thread Phill
I have now, same problem: INFO - WebApplication - [wicket.cryptest] Started Wicket version 1.5.3 in DEVELOPMENT mode *** WARNING: Wicket is running in DEVELOPMENT mode. *** ***

Re: AW: AW: DropDownChoice model is not updated when wantOnSelectionChangedNotifications is overriden

2011-11-12 Thread Sven Meier
Hi, setResponsePage(FormInput.class); all the model values are reset to default including my selectbox model value...is this normal? yes, a new instance of the page will be created. I checked the FormInput example..The only difference ... You should provide a quickstart, so we are able

Re: CryptoMapper - Error decoding text

2011-11-12 Thread Igor Vaynberg
go ahead and create a quickstart and stick it into a jira. thanks, -igor On Sat, Nov 12, 2011 at 11:30 AM, Phill ph...@leadseeker.co.uk wrote: I have now, same problem: INFO  - WebApplication             - [wicket.cryptest] Started Wicket version 1.5.3 in DEVELOPMENT mode

Re: DI in wicket

2011-11-12 Thread vela
Hi, Just like to use DAO pattern with Spring in wicket. If any other link for references would be of great help. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p4036039.html Sent from the Users forum mailing list archive at Nabble.com.

Re: CryptoMapper - Error decoding text

2011-11-12 Thread Phill
https://issues.apache.org/jira/browse/WICKET-4222 On 12/nov/2011, at 23:33, Igor Vaynberg wrote: go ahead and create a quickstart and stick it into a jira. thanks, -igor On Sat, Nov 12, 2011 at 11:30 AM, Phill ph...@leadseeker.co.uk wrote: I have now, same problem: INFO -