Re: AjaxLink.onClick() Not Triggered

2012-02-20 Thread Martin Grigorov
Hi, The produced looks OK. Clicking on it should execute the script in onclick. Try with a different browser. Maybe JavaScript is disabled at the one you use... On Mon, Feb 20, 2012 at 11:12 PM, Richard W. Adams wrote: > Hm.. more mystery. I put a break point on wicketAjaxGet. But it never

Re: AjaxLink.onClick() Not Triggered

2012-02-20 Thread Richard W. Adams
Hm.. more mystery. I put a break point on wicketAjaxGet. But it never gets executed. Clicking the link, apparently does absolutely nothing. Doesn't even cause the Javascript to be called. Anyone have any ideas? From: Andrea Del Bene To: users@wicket.apache.org Date: 02/19/2012 07

Re: Wicket jQuery Validator integration

2012-02-20 Thread Maarten Bosteels
On Wed, Feb 15, 2012 at 5:41 PM, Paul Jackson wrote: > We do something very similar to this, and agree that it works really > well. We also use JSR303 annotations on our domain models and use them > to drive adding both wicket and jquery validators. > > We have a bunch of ValdiationConfiguration c

Re: AutoCompleteTextField broken in IE9, wicket 1.5?

2012-02-20 Thread northar
Worked fine for 1.5.4! Thanks. Must have been fixed in between -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AutoCompleteTextField-broken-in-IE9-wicket-1-5-tp4405026p4405051.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: AutoCompleteTextField broken in IE9, wicket 1.5?

2012-02-20 Thread Martin Grigorov
wicketstuff.org is not updated. It uses Wicket 1.5.1. Better check at http://www.wicket-library.com/wicket-examples/index.html P.S. I don't use Windows to try for you. On Mon, Feb 20, 2012 at 9:35 PM, northar wrote: > Found that i don't get the basic autocompletetextfield to work in IE9, > To re

AutoCompleteTextField broken in IE9, wicket 1.5?

2012-02-20 Thread northar
Found that i don't get the basic autocompletetextfield to work in IE9, To repeat, just try the example on wicketstuff.org/wicket/ajax/ in IE9 and Firefox. Works fine in Firefox, not at all in IE9. Repeated locally. 1.4x version works fine in IE9, firefox etc. Could anyone else verify/discard this

How to Load a Wizard in a popup

2012-02-20 Thread Sameer Patil
Hi, I understood that we need to use the reflection api as shown in the WizardPage and WizardLink at wicketstuff.org for getting the wizard to work. But i am missing the point how can i load a wizard in a popup window. Please advise. Regards, Sameer.

2 small improvements that wickettester can have

2012-02-20 Thread vineet semwal
Hellos, there are times i need these 2 versions of methods in wickettester,i think these are usual use cases and can be added in wicketester . 1) startcomponentInPage(component,pageparameters) the parameters that can be added to the parameters of the page created for component by wickettester

Re: JavaSerializer in 1.5.4 causes exceptions with GAE

2012-02-20 Thread Ian Marshall
Thanks for pointing me to WicketStuff and the fix it gives. Strangely enough, for me I only encountered this problem for 1.5.4 but not before then. Thanks too for the link to the GAE/J issue. I already had it starred, and had already noted the lack of attention it receives. -- View this message i

Re: Announcing "Built with Wicket"

2012-02-20 Thread Josh Kamau
The list is likely to be too long. May be you could add categories or tags e.g ecommerce, social networking, cms, . Josh. On Mon, Feb 20, 2012 at 4:00 PM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > We all know that Apache Wicket is an amazing framework for building > web applica

Re: Shrinking the session size, simply by zipping it. Saved my day.

2012-02-20 Thread Josh Kamau
Thanks Emond Papegaaij Thats fantastic. Josh On Mon, Feb 20, 2012 at 7:08 PM, Emond Papegaaij wrote: > Thanks for the suggestion! I've just implemented this. It should be > available > in 1.5.5 and 6.0.0, see https://issues.apache.org/jira/browse/WICKET-4419for > details. > > Best regards, > E

Re: Shrinking the session size, simply by zipping it. Saved my day.

2012-02-20 Thread Emond Papegaaij
Thanks for the suggestion! I've just implemented this. It should be available in 1.5.5 and 6.0.0, see https://issues.apache.org/jira/browse/WICKET-4419 for details. Best regards, Emond On Monday 20 February 2012 10:48:52 Josh Kamau wrote: > Thanks for the post. > > I wish this could be integra

Re: JavaSerializer in 1.5.4 causes exceptions with GAE

2012-02-20 Thread Martin Grigorov
On Mon, Feb 20, 2012 at 4:08 PM, Martin Grigorov wrote: > This is a known limitation in GAE. > > https://github.com/wicketstuff/core/blob/master/jdk-1.6-parent/gae-initializer-parent/gae-initializer/src/main/java/org/wicketstuff/gae/GaeObjectSerializer.java > > And there is a ticket about this in

Re: JavaSerializer in 1.5.4 causes exceptions with GAE

2012-02-20 Thread Martin Grigorov
This is a known limitation in GAE. https://github.com/wicketstuff/core/blob/master/jdk-1.6-parent/gae-initializer-parent/gae-initializer/src/main/java/org/wicketstuff/gae/GaeObjectSerializer.java And there is a ticket about this in GAE issues tracker since few years now. I cannot find it at the m

Re: Show pdf

2012-02-20 Thread Martin Grigorov
See DownloadLink does it: https://github.com/apache/wicket/blob/wicket-1.5.x/wicket-core/src/main/java/org/apache/wicket/markup/html/link/DownloadLink.java#L159 On Mon, Feb 20, 2012 at 2:46 PM, Javier Leyba wrote: > Hi > > Thanks, it worked!! > > However, how can I do it if after upload my file

Re: Show pdf

2012-02-20 Thread Javier Leyba
Hi Thanks, it worked!! However, how can I do it if after upload my file I want to show the pdf without force the user to click on link? Regards J On Mon, Feb 20, 2012 at 1:46 PM, Martin Grigorov wrote: > add(new DownloadLink("someId", "the/path/to/the.pdf")); > > This is the simplest way. >

Announcing "Built with Wicket"

2012-02-20 Thread Martijn Dashorst
We all know that Apache Wicket is an amazing framework for building web applications, so why not share the love? "Built with Wicket" is a blog for showcasing all websites and applications that use Wicket as the web framework. Follow "Built with Wicket" at http://builtwithwicket.tumblr.com and enjo

Re: Show pdf

2012-02-20 Thread Martin Grigorov
add(new DownloadLink("someId", "the/path/to/the.pdf")); This is the simplest way. From: Javier Leyba To: users@wicket.apache.org; Martin Grigorov Sent: Monday, 20 February 2012, 13:38 Subject: Re: Show pdf Hi Thanks for your replies. However, I am totally

Re: Show pdf

2012-02-20 Thread Javier Leyba
Hi Thanks for your replies. However, I am totally new with Wicket and my development was done following examples and tutorials. I really have no idea how to implement the recommended classes. Could you please show some sample code or provide a link to samples? Regards J On Mon, Feb 20, 2012 a

Re: setRenderBodyOnly(true) doesn't work for label in

2012-02-20 Thread Chantal Ackermann
Hi Ilia, it works for me in 1.5.4. My markup looks like that: Window : The difference might be that I am using an explicit closing tag . (I have not played around with it.) Chantal On Mon, 2012-02-20 at 13:01 +0100, Илья Нарыжный wrote: > Hello, > > I have following code in HTML: > > key=

Re: Show pdf

2012-02-20 Thread Martin Grigorov
Hi, I think the easiest is to use ResourceLink or DownloadLink. Otherwise using ByteArrayResource should be almost the same as DynamicWebResource from 1.4. From: Javier Leyba To: users@wicket.apache.org Sent: Monday, 20 February 2012, 12:59 Subject: Show pdf

Re: setRenderBodyOnly(true) doesn't work for label in

2012-02-20 Thread Martin Grigorov
Hi, Create a quickstart and attach it to Jira. It is interesting to see what is the problem. In the meantime use instead. From: Илья Нарыжный To: users@wicket.apache.org Sent: Monday, 20 February 2012, 13:01 Subject: setRenderBodyOnly(true) doesn't work for

RE: Show pdf

2012-02-20 Thread Michal Wegrzyn
Hi Javier, Check org.apache.wicket.util.resource.AbstractResourceStream org.apache.wicket.request.handler.resource.ResourceStreamRequestHandler Best regards, Michal Wegrzyn > -Original Message- > From: Javier Leyba [mailto:xle...@gmail.com] > Sent: Monday, February 20, 2012 12:59 > T

setRenderBodyOnly(true) doesn't work for label in

2012-02-20 Thread Илья Нарыжный
Hello, I have following code in HTML: and in Java: add(new Label("pagetitle", titleModel).setRenderBodyOnly(true)); But as output on page, I have following title: Actual title heresite suffix It seems to be a bug... Wicket version is 1.5.4 Is it a bug and Jira ticket should be created? T

Show pdf

2012-02-20 Thread Javier Leyba
Hi I did a page that will upload a file to a folder. Another application will convert the file to pdf and left it in a different folder where my web app will pick it up and show it. How can I show that pdf? I have checked many tutorials, even in wicket how-to, but all of them are using DynamicW

Re: Howto go for editable grid with add/remove row in wicket 1.4?

2012-02-20 Thread Emmanouil Batsis (Manos)
On 02/20/2012 03:49 AM, Emmanouil Batsis (Manos) wrote: On 02/19/2012 10:56 PM, Jorge Rodrigez wrote: You just need to add/remove an item to your data source. Next time you rerender the grid it will show/hide the added/removed Any custom datasource examples out there? Essentially I'd like to b