Re: [Announce] wicket-jade

2013-08-07 Thread Martin Grigorov
Hi, Yes, this is what I initially meant and apparently it works fine without custom MarkupFactory/MarkupParser/etc. What will not work is markup inheritance and any other usage of tags. Here is how I imagine it: - override #getMarkupType() in JadePanel and use .jade as an extension - extend Mar

Re: RequestLogger - logging page requests only

2013-08-07 Thread Martin Grigorov
Hi, I think this is OK. On Wed, Aug 7, 2013 at 8:43 AM, Marios Skounakis wrote: > Hi all, > > I want to customize request logger to only log page requests. I.e. I don't > want resource requests, etc. > > I have overridden log(RequestData rd, SessionData sd) as follows: > > @Override > prot

Re: How to resolve this java.util.ConcurrentModificationException

2013-08-07 Thread Michael Mosmann
Am 06.08.13 20:03, schrieb saty: ...various wicket panels use this data-manager to request data that they need to display/update etc. I think it matters how you acces this data-manager from your panels. If you use something like this: Application.get().dataManager().doSomething(bla) you shoul

Re: Component for Applet

2013-08-07 Thread Martin Grigorov
Hi, On Tue, Aug 6, 2013 at 9:41 PM, Martin Beránek wrote: > Hi, > > I'am trying to write component similar to > http://mrhaki.blogspot.cz/2009/05/wicket-component-for-java-deployment.html > but I need to use JNLP for applet deployment. I write my own Resource > that generate JNLP file (it's xml,

Problem with Ajax submit link in multipartform with dynamic extra parameters

2013-08-07 Thread Antoine Angenieux
Hi all! I'm using Wicket 6 (both 6.8 and 6.9.1) and am facing an issue when: 1. I have a multipart form 2. This form is submitted via an AjaxSubmitLink (or by any component using an Ajax behavior for submission) 3. The updateAjaxAttributes method of the link is overridden to: 3.1 set multipa

Re: Problem with Ajax submit link in multipartform with dynamic extra parameters

2013-08-07 Thread Martin Grigorov
Hi, Please create a ticket and attach the quickstart. It is a bug. On Wed, Aug 7, 2013 at 9:44 AM, Antoine Angenieux wrote: > Hi all! > > I'm using Wicket 6 (both 6.8 and 6.9.1) and am facing an issue when: > > 1. I have a multipart form > 2. This form is submitted via an AjaxSubmitLink (or by

Re: [Announce] wicket-jade

2013-08-07 Thread Piratenvisier
Hello Decebal, when I try to install your application I get the error: [ERROR] MavenInvocationException: Error when invoking Maven, consult the invoker log file: /homeerweitert/java/wicket/appfuse/makler/wicket-jade/new/trunk/wicket-jade/target/invoker/maven-javadoc-plugin25820809.txt and in

Re: [Announce] wicket-jade

2013-08-07 Thread Decebal Suiu
Hi Heiner I use maven 3 (3.0.4) on my machine and it's ok. Maybe it's a problem with maven 2. I will try to make a test with maven 2. You run "mvn install" from wicket-jade project, correct? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Announce-wicket-jade-tp46

Re: Documentation for RequestLogger

2013-08-07 Thread Jens Jahnke
Hi, On Tue, 6 Aug 2013 15:11:34 -0400 Paul Bors wrote: PB> Isn't Log4J shipped with the quick-start? PB> PB> Create yourself a quick-start and analyze it: PB> http://wicket.apache.org/start/quickstart.html PB> PB> PS: You can also check the initialization related topics as well as PB> your fir

Re: Problem with Ajax submit link in multipartform with dynamic extra parameters

2013-08-07 Thread Antoine Angenieux
Hi Martin, Thanks for this quick answer, as usual! Here is the link to the issue, with its attached quickstart: https://issues.apache.org/jira/browse/WICKET-5306 Cheers, Antoine. - Antoine Angénieux Co-founder mob: +33 6 60 21 09 18 aangeni...@clinigrid.com - Clinigri

Re: Documentation for RequestLogger

2013-08-07 Thread Martin Grigorov
On Wed, Aug 7, 2013 at 10:07 AM, Jens Jahnke wrote: > Hi, > > On Tue, 6 Aug 2013 15:11:34 -0400 > Paul Bors wrote: > > PB> Isn't Log4J shipped with the quick-start? > PB> > PB> Create yourself a quick-start and analyze it: > PB> http://wicket.apache.org/start/quickstart.html > PB> > PB> PS: You

Re: Documentation for RequestLogger

2013-08-07 Thread Cedric Gatay
I guess he's talking of its current log4j setup which logs to stdout __ Cedric Gatay (@Cedric_Gatay ) http://code-troopers.com | http://www.bloggure.info | http://cedric.gatay.fr On Wed, Aug 7, 2013 at 10:11 AM, Martin Grigorov wrote: > On Wed, Aug 7, 2013 at 10

Re: Documentation for RequestLogger

2013-08-07 Thread Jens Jahnke
Hi, On Wed, 7 Aug 2013 10:11:30 +0200 Martin Grigorov wrote: MG> On Wed, Aug 7, 2013 at 10:07 AM, Jens Jahnke MG> wrote: MG> MG> > Hi, MG> > MG> > On Tue, 6 Aug 2013 15:11:34 -0400 MG> > Paul Bors wrote: MG> > MG> > PB> Isn't Log4J shipped with the quick-start? MG> > PB> MG> > PB> Create your

Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
Hello, In my research project, I need to create a combo box with a list of choices. I use AJAX and DropDownChoice to perform some action on selection change. My application is based on the frames example on Wicket's website: http://www.wicket-library.com/wicket-examples/frames/ When the user sele

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Martin Grigorov
Hi, On Wed, Aug 7, 2013 at 1:09 PM, Jeremie wrote: > Hello, > > In my research project, I need to create a combo box with a list of > choices. > I use AJAX and DropDownChoice to perform some action on selection change. > My > application is based on the frames example on Wicket's website: > htt

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jesse Long
Hi Jeremie, You can use javascript: target.appendJavascript("top.frames['myframename'].location='" + urlFor(TraineeView.class,pageParamaters) + "';"); Cheers, Jesse On 07/08/2013 13:09, Jeremie wrote: Hello, In my research project, I need to create a combo box with a list of choices. I use

Re: [Announce] wicket-jade

2013-08-07 Thread Decebal Suiu
Hi Heiner I tested with maven 2 and it works fine: $ mvn -version Apache Maven 2.2.1 (r801777; 2009-08-06 22:16:01+0300) Java version: 1.6.0_17 Java home: /opt/java/jdk1.6.0_17/jre Default locale: en_US, platform encoding: UTF-8 OS name: "linux" version: "2.6.32-50-generic" arch: "i386" Family: "

RE: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
Thanks both for your quick replies. What does top refer to? In my page, I have the following structure: Home.html http://wicket.apache.org";> Home.java public class Home extends WebPage { /** */ private static

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
Thanks both for your quick replies. What does top refer to? In my page, I have the following structure: Home.html http://wicket.apache.org";> Home.java public class Home extends WebPage { /** */ private static final long serialVer

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
In fact, pageURL returns nothing. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-DropDownChoice-onChange-open-response-page-in-right-frame-tp4660763p4660771.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: [Announce] wicket-jade

2013-08-07 Thread Piratenvisier
Hi Suiu, miracle with maven 3 it's ok; Am 07.08.2013 13:37, schrieb Decebal Suiu: Hi Heiner I tested with maven 2 and it works fine: $ mvn -version Apache Maven 2.2.1 (r801777; 2009-08-06 22:16:01+0300) Java version: 1.6.0_17 Java home: /opt/java/jdk1.6.0_17/jre Default locale: en_US, platfor

No page id appended to some stateful pages

2013-08-07 Thread Bertrand Guay-Paquet
Hello, After investigating why some of my stateful pages had a ?n redirect while others did not, I think I found a bug with the stateless page checking. My test case is a page containing only an AjaxFallbackDefaultDataTable, but it can be reduced to a page containing a ListView with a single

Re: No page id appended to some stateful pages

2013-08-07 Thread Martin Grigorov
On Wed, Aug 7, 2013 at 7:48 PM, Bertrand Guay-Paquet wrote: > Hello, > > After investigating why some of my stateful pages had a ?n redirect while > others did not, I think I found a bug with the stateless page checking. > > My test case is a page containing only an AjaxFallbackDefaultDataTable,

Re: No page id appended to some stateful pages

2013-08-07 Thread Carl-Eric Menzel
On Wed, 07 Aug 2013 13:48:38 -0400 Bertrand Guay-Paquet wrote: > The problem I see is that AbstractRepeater's onPopulate() is called > during onBeforeRender() and this is not done when the stateless > status of the page is first checked. Therefore, no pageId is added > unless other components no

Re: No page id appended to some stateful pages

2013-08-07 Thread Sven Meier
My changes for WICKET-4995 are probably to blame for this. Let's await the quickstart. Sven On 08/07/2013 07:56 PM, Martin Grigorov wrote: On Wed, Aug 7, 2013 at 7:48 PM, Bertrand Guay-Paquet wrote: Hello, After investigating why some of my stateful pages had a ?n redirect while others did n

Gmap3 NullPointerException

2013-08-07 Thread Vishal Popat
Hi all, I have set up this to report errors this.getRequestCycleListeners().add(new AbstractRequestCycleListener() { @Override public IRequestHandler onException(RequestCycle cycle, Exception e) { return new RenderPageRequestHandler(new PageProvider(new