Re: No file found for: /app/resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js

2011-01-09 Thread fachhoch
the quick start works , the app works fine when deployed to jetty or any other server , I am trying to deploy on gae , so I added gae dependencies ,and deploy on gae, I see this behaviour , I attached my http://apache-wicket.1842946.n4.nabble.com/file/n3205984/saibaba.zip saibaba.zip eclipse pro

Re: Page content sends twice in response to GET when redirecting after POST

2011-01-09 Thread Marcin Zajączkowski
On 2011-01-09 22:00, Marcin Zajączkowski wrote: > Hi, > > > Following some problems with page rendering in my application after post > a form I've noticed that when redirect after post strategy is used (both > REDIRECT_TO_BUFFER and REDIRECT_TO_RENDER) page content is duplicated in > a response t

Re: Page content sends twice in response to GET when redirecting after POST

2011-01-09 Thread Igor Vaynberg
really strange because it doesnt happen to me: http://pastebin.com/fe1pjZjy -igor 2011/1/9 Marcin Zajączkowski : > On 2011-01-09 22:00, Marcin Zajączkowski wrote: >> Hi, >> >> >> Following some problems with page rendering in my application after post >> a form I've noticed that when redirect

Re: AjaxLazyLoadPanel and back button

2011-01-09 Thread flavius
Thanks Pedro. I've opened WICKET-3318 regarding this issue and attached a quickstart. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-and-back-button-tp3168379p3206574.html Sent from the Users forum mailing list archive at Nabble.com. -

inter application communication in wicket

2011-01-09 Thread sap2000
Hi, Can anybody please throw some light on how two wicket applications, deployed into the same container can interact with each other? Basic requirement is, parameters should be passed from component in Application1 to component in Application2, when Application2 is called from Application1 v

Re: inter application communication in wicket

2011-01-09 Thread Nick Heudecker
We use ActiveMQ and Camel for those types of operations. It's been very successful. On Sun, Jan 9, 2011 at 10:51 PM, sap2000 wrote: > > Hi, > > Can anybody please throw some light on how two wicket applications, > deployed > into the same container can interact with each other? > > Basic requir

removing SimpleAttributeModifier after added

2011-01-09 Thread Altuğ Bilgin Altıntaş
Hi, Java code: final WebMarkupContainer delete = new WebMarkupContainer("delete"); delete.setOutputMarkupPlaceholderTag(true); delete.add(new SimpleAttributeModifier("filter", "false")); html : then after i want to remove SimpleAttributeModifier - filter" from WebMarkupContainer - delete, A