Re: Ajax updating panel inside ModalWindow

2013-04-09 Thread Cedric Gatay
Could you provide a quick start reproducing this issue? Le 8 avr. 2013 23:20, jarnis jarnis.bertel...@exedio.com a écrit : I have tried the ModalWindow both inside and outside an enclosing form, with no difference. I also tried to put updating behavior in the onClick method of an AjaxLink

REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Dirk Forchel
Hi, I've a problem with my optional parameter and encoded Umlauts. My example page is mapped with the MountedMapper on /landing/#{seoString}/${context}, where as seoString is the optional parameter and context is the required parameter. Bookmarkable page links are generated with the correct URL,

Re: Wicket free guide updated.

2013-04-09 Thread madmax108
Thanks Andrea this is really helpful! :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-free-guide-updated-tp4657809p4657841.html Sent from the Users forum mailing list archive at Nabble.com.

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Martin Grigorov
Hi, Please create a ticket with a quickstart. On Tue, Apr 9, 2013 at 12:13 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Hi, I've a problem with my optional parameter and encoded Umlauts. My example page is mapped with the MountedMapper on /landing/#{seoString}/${context}, where as

Form in pop in

2013-04-09 Thread grignette
Hi ! I have a little question. I have a Pop in with a Form and ListView. The form can modify the content of the listView. When I submit the form, the popin is closing... How to keep the pop in open ? Thanks for your help ! -- View this message in context:

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Dirk Forchel
Can give me a hint in which class the encoding for this redirect is done? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/REDIRECT-TO-BUFFER-and-Url-encoding-problem-with-Umlauts-tp4657840p4657844.html Sent from the Users forum mailing list archive at Nabble.com.

Re: REDIRECT_TO_BUFFER and Url encoding problem with Umlauts

2013-04-09 Thread Martin Grigorov
org.apache.wicket.request.handler.render.WebPageRenderer On Tue, Apr 9, 2013 at 12:34 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Can give me a hint in which class the encoding for this redirect is done? -- View this message in context:

Re: Form in pop in

2013-04-09 Thread Martin Grigorov
Hi, You have to submit the form with Ajax. Normal (non-Ajax) submit leads to reload of the whole page. On Tue, Apr 9, 2013 at 12:32 PM, grignette lady-eli...@hotmail.fr wrote: Hi ! I have a little question. I have a Pop in with a Form and ListView. The form can modify the content of the

Re: Form in pop in

2013-04-09 Thread grignette
Could you please tell me what wicket object I must use ? Thanks for your help ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Form-in-pop-in-tp4657843p4657847.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Form in pop in

2013-04-09 Thread Martin Grigorov
Just use AjaxButton instead of Button component. Make sure that you do component.setOutputMarkupId(true) on the components which have to be repainted with AjaxRequestTarget#add(). For more info see the Ajax related chapter in : https://code.google.com/p/wicket-guide/ On Tue, Apr 9, 2013 at

Re: Form in pop in

2013-04-09 Thread grignette
I found what I want in your wicket guide. Thanks for the link ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Form-in-pop-in-tp4657843p4657849.html Sent from the Users forum mailing list archive at Nabble.com.

Semi OT: Request for on site wicket training

2013-04-09 Thread Giovanni Cuccu
Hi, I'm trying to convince my boss to invest in a wicket course, and he wants for a quotation (read $ or €) in order to evaluate to go on or not. I'm looking for a wicket on site course for about 10 developers (Location Bologna, Italy) three or five days long. We are using wicket since 2009

Re: FileUploadField best approach to populating a file

2013-04-09 Thread mohallo
Dan thanks very much for the rapid response .Let me take a look . -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/FileUploadField-best-approach-to-populating-a-file-tp4657832p4657851.html Sent from the Users forum mailing list archive at Nabble.com.

inmethod grid column resize error alert

2013-04-09 Thread saty
I am using this grid in numerous places in my current application and dont have this problem anywhere else except in one of the panel. When resizing the column it prints below line on server console: 1:41:13.410 [qtp1683589725-44] WARN o.a.wicket.RequestListenerInterface - behavior not enabled;

Re: Wicket free guide updated.

2013-04-09 Thread Paul Szulc
Hi, is ths under open source? Are you looking for contributors? On Mon, Apr 8, 2013 at 11:42 AM, Andrea Del Bene an.delb...@gmail.comwrote: Hi, I bother you just to tell that I released an updated version of the guide with some typo corrections and two small additions.

Repainting repeaters - why the need for the enclosing element

2013-04-09 Thread Nick Pratt
I've never really understood this concept, and Im hoping that someone can explain: When I have a repeater, say a ListView, and I have the tags set up: div wicket:id=myRepeater ... whatever ... /div Why cant I repaint that component via Ajax? There's an ID etc. - what in Wicket forces us to

Re: Wicket free guide updated.

2013-04-09 Thread Bertrand Guay-Paquet
Hi Paul, I asked the same question for v1. Here's the answer: no, at the moment there is no source for documentation. The main document is a LibreOffice odt file. I didn't decide yet how to make it available... As for contributions, they are welcome! Either send an email or use the google

Re: Wicket free guide updated.

2013-04-09 Thread Cedric Gatay
Great job Andrea, I am actually reading it, I'll try to provide my feedback when I'm done with it. Regards __ Cedric Gatay (@Cedric_Gatay http://twitter.com/Cedric_Gatay) http://code-troopers.com | http://www.bloggure.info | http://cedric.gatay.fr On Tue, Apr 9, 2013 at 6:51 PM, Bertrand

Re: Repainting repeaters - why the need for the enclosing element

2013-04-09 Thread Igor Vaynberg
this has to do with how wicket repaints things with ajax. what it does is render the component and then replace the component's root dom node in the existing markup with the one rendered via ajax. lets take a simple example of attaching a listview to a [tr] add(new ListView(rows, ...) { });

Re: inmethod grid column resize error alert

2013-04-09 Thread saty
This is being caused by inmethod grid being set to disabled, the error looks unnecessary though. Not sure if there is way to suppress it. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inmethod-grid-column-resize-error-alert-tp4657852p4657858.html Sent from the

Re: inmethod grid column resize error alert

2013-04-09 Thread Ernesto Reinaldo Barreiro
can you create a quick-start? and attach it to an issue in github? On Tue, Apr 9, 2013 at 9:44 PM, saty satya...@gmail.com wrote: This is being caused by inmethod grid being set to disabled, the error looks unnecessary though. Not sure if there is way to suppress it. -- View this

Re: inmethod grid column resize error alert

2013-04-09 Thread saty
ok, will do. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inmethod-grid-column-resize-error-alert-tp4657852p4657860.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: Wicket free guide updated.

2013-04-09 Thread Bruno Moura
Great job Andrea, really nice! Thanks Bruno Moura 2013/4/9 Bertrand Guay-Paquet ber...@step.polymtl.ca Hi Paul, I asked the same question for v1. Here's the answer: no, at the moment there is no source for documentation. The main document is a LibreOffice odt file. I didn't decide yet

IHeaderResponse serialization problem Wicket 6

2013-04-09 Thread datazuul
After migrating my webapp from 1.5.7 to 6.6.0 (thus changing all org.apache.wicket.markup.html.IHeaderResponse to org.apache.wicket.markup.head.IHeaderResponse) I fire up my webapp with embedded Jetty and get an java.lang.NoClassDefFoundError: org/apache/wicket/markup/html/IHeaderResponse