Re: RadioGroup selections after validation failure problem

2012-04-03 Thread Matt Stevenson
Hi Andrea, That solved the problem - I should have noticed it was missing the model myself! Thanks so much for the help. Matt -Original Message- From: Andrea Del Bene Sent: Monday, April 02, 2012 6:36 PM To: users@wicket.apache.org Subject: Re: RadioGroup selections after

Re: mapping / mounting of PIE.htc for IE

2012-04-03 Thread Bert
I have to switch to absolute URLs for this. Thanks for reading Bert On Mon, Apr 2, 2012 at 15:33, Bert taser...@gmail.com wrote: Hi list, in a current project I need to support IE 9. For this, the designer have decided to use pie.htc (http://css3pie.com/) which adds CSS3 support via IE

Re: mapping / mounting of PIE.htc for IE

2012-04-03 Thread Guillaume Smet
Hi Bert, On Tue, Apr 3, 2012 at 11:25 AM, Bert taser...@gmail.com wrote: I have to switch to absolute URLs for this. Thanks for reading It's not exactly the best solution in the world but, considering that PIE.htc is a hack, we use a pretty hackish solution: we declare all the styles on which

Re: Page.onPageAttached() never gets called in 1.5?

2012-04-03 Thread booloo
Hi, We use the method onPageAttached () for volidation, and if an error occurs then we redirect to any appropriate page From the page constructor setResponsePage does not work. If you use the if (! validateLogin ()) { throw new RestartResponseAtInterceptPageException

Wicket with ServletContainerInitializer

2012-04-03 Thread Christoph Leiter
Hi, I'm trying to use ServletContainerInitializer to start my wicket application. There's already work done to support this in WICKET-4350. It's not working for me, however. The filter is registered in jetty but I get a 404 response for every request. What I've done so far (starting from a

IE9 Memory leak when updating component with Ajax (Wicket 1.5.5)

2012-04-03 Thread Heikki Uotinen
Hi, it seems that IE9 leaks memory heavily when updating components with Ajax in IE9 document mode. There is no leak after setting document to IE8 mode meta http-equiv=X-UA-Compatible content=IE=8/ Any ideas to resolve this without forcing IE8 mode ? There have been past issues, but found no

Re: Error while deploying to Tomcat 7

2012-04-03 Thread Dan Retzlaff
Is com.myapp.wicket.IVoteCollection included in multiple JARs? Maybe one in server/lib and one in WEB-INF/lib? Because those will use different class loaders, Java thinks they're different classes even though they have the same name. On Tue, Apr 3, 2012 at 1:02 AM, SudeepShakya

Wicket Application on GoDaddy

2012-04-03 Thread Satrix
Hello, I'm trying to deploy my application on GoDaddy and it works but... let's say that I've domain that is available under www.domain.com WAR file name is: warfilename When the installation is done my application is available under www.domain.com/warfilename/home And the question is how to

Wicket Fragments and Wicket Extends

2012-04-03 Thread Ciaran Liedeman
Hello, I've been trying to use fragments in a page but can't seem to get it to work. It fails with an error saying No markup found for fragment id... I used the example as if from the 1.5 javadocs http://wicket.apache.org/apidocs/1.5/org/apache/wicket/markup/html/panel/Fragment.html the only

Re: Wicket Application on GoDaddy

2012-04-03 Thread Satrix
I changed the name of WAR file to ROOT.war but no luck now it's www.domain.com/ROOT/home :/ From what I know there is tomcat 5 running -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Application-on-GoDaddy-tp4529071p4529402.html Sent from the Users forum

Re: Wicket Application on GoDaddy

2012-04-03 Thread Igor Vaynberg
weird. that always worked for me on tomcat. i suggest you read their docs about root contexts. -igor On Tue, Apr 3, 2012 at 9:31 AM, Satrix satrix...@gmail.com wrote: I changed the name of WAR file to ROOT.war but no luck now it's www.domain.com/ROOT/home :/ From what I know there is tomcat 5

Re: Wicket Fragments and Wicket Extends

2012-04-03 Thread Martin Grigorov
Hi, See https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/Fragment.java#L70 wicket:fragment should be inside the HTML element to which is assigned 'markupProvider' component. Show us your code if you need more help. On Tue, Apr 3, 2012

Re: Wicket Application on GoDaddy

2012-04-03 Thread Pointbreak
You probably have another webapp already mounted as root context (in your webapps/ROOT). You obviously can't have two webapps under the root... On Tue, Apr 3, 2012, at 09:31, Satrix wrote: I changed the name of WAR file to ROOT.war but no luck now it's www.domain.com/ROOT/home :/ From what I

Re: Wicket Application on GoDaddy

2012-04-03 Thread anantasthana
You will have to set up a redirect through Apache(Not apache tomcat) or IIS webserver You can set a virtual redirect which redirects all requests to mydomain.com/myApp to mydomain.com:8080/webappName/ I can not remember the exact configuration but I am sure you will be able to find them. If

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Dominik Sandjaja
Hi, I also just experienced this same problem. A plain quickstart project with 1.4.19 shows the expected page when accessing localhost:8080/myproject. Trying the same with the 1.5.5 quickstart results in the Not found message, mentioned in the first message of this thread. Same error with the

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Martin Grigorov
Hi, Here is what I did: 1) go to http://wicket.apache.org/start/quickstart.html 2) copy mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.5.5 -DgroupId=com.mycompany -DartifactId=myproject

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Jörgen Persson
I did the steps that Martin described and 1) http://localhost:8080/myproject = page not found 2) http://localhost:8080 = OK /Jörgen 2012/4/3 Martin Grigorov mgrigo...@apache.org Hi, Here is what I did: 1) go to http://wicket.apache.org/start/quickstart.html 2) copy mvn

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Dominik Sandjaja
Hi, I did exactly the same (see my shell output below) but afterwards accessing http://localhost:8080/myproject results in the mentioned HTTP ERROR 404 with Not Found. If anyone needs more information about versions of software, I am happy to provide that :-) Thanks Dominik

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Dominik Sandjaja
Am Dienstag, den 03.04.2012, 21:47 +0200 schrieb Jörgen Persson: I did the steps that Martin described and 1) http://localhost:8080/myproject = page not found 2) http://localhost:8080 = OK Same here. /Jörgen 2012/4/3 Martin Grigorov mgrigo...@apache.org Hi, Here is what I

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Martin Grigorov
Hi Dominic, You want to reach it at http://localhost:8080/myproject instead of http://localhost:8080 ? If so consult with jetty-maven-plugin configuration. You need to set the contextPath parameter. On Tue, Apr 3, 2012 at 9:53 PM, Dominik Sandjaja domi...@dadadom.de wrote: Am Dienstag, den

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Dominik Sandjaja
Hi, OK, I just realised my mistake: The quickstart page still mentions that the application is reachable via localhost:8080/myproject, but it actually is already at the root level (/). I thought that the page I see is just the it works message (like the apache httpd or tomcat pages), not the

Re: how to make a div containing ajax link clickable

2012-04-03 Thread Richard W. Adams
add(new AjaxEventBehavior(onclick) RAM /abr./: Rarely Adequate Memory. From: jason jason.novo...@gmail.com To: users@wicket.apache.org Date: 04/03/2012 03:02 PM Subject:how to make a div containing ajax link clickable Hi, What is the best way to make a div clickable? I'd

Re: Quickstart application doesn't show up with 1.5.3

2012-04-03 Thread Martin Grigorov
The documentation is fixed! On Tue, Apr 3, 2012 at 10:04 PM, Dominik Sandjaja domi...@dadadom.de wrote: Hi, OK, I just realised my mistake: The quickstart page still mentions that the application is reachable via localhost:8080/myproject, but it actually is already at the root level (/). I

wicketstuff.org - down

2012-04-03 Thread Jeffrey Schneller
Wicketstuff.org appears to be down. Any ideas on when it will be back up?

Re: wicketstuff.org - down

2012-04-03 Thread Martin Grigorov
http://wicketstuff.github.com/ On Tue, Apr 3, 2012 at 11:14 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com wrote: Wicketstuff.org appears to be down.  Any ideas on when it will be back up? -- Martin Grigorov jWeekend Training, Consulting, Development http://jWeekend.com

RE: wicketstuff.org - down

2012-04-03 Thread Brown, Berlin [GCG-PFS]
Could someone add a redirect to the wicketstuff github site. And I assuming that github doesn’t host java web applications, so the java web apps are somewhere else? -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Tuesday, April 03, 2012 5:16 PM To:

Re: wicketstuff.org - down

2012-04-03 Thread Martin Grigorov
If the site is down then how the redirect would work ? :-) Read the content of the page. There is a link to the examples On Tue, Apr 3, 2012 at 11:23 PM, Brown, Berlin [GCG-PFS] berlin.br...@primerica.com wrote: Could someone add a redirect to the wicketstuff github site.  And I assuming that

Re: wicketstuff.org - down

2012-04-03 Thread Igor Vaynberg
redirect on the registrar... -igor On Tue, Apr 3, 2012 at 2:26 PM, Martin Grigorov mgrigo...@apache.org wrote: If the site is down then how the redirect would work ? :-) Read the content of the page. There is a link to the examples On Tue, Apr 3, 2012 at 11:23 PM, Brown, Berlin [GCG-PFS]

Re: how to make a div containing ajax link clickable

2012-04-03 Thread jason
This is weird... If I do something like this taken from http://wicket.apache.org/apidocs/1.4/org/apache/wicket/ajax/AjaxEventBehavior.html WebMarkupContainer div=new WebMarkupContainer(div); div.setOutputMarkupId(true); div.add(new AjaxEventBehavior(onclick) {

Re: how to make a div containing ajax link clickable

2012-04-03 Thread jason
Sorry that last HTML snippet should be: div class=calendar-box wicket:id=calendarBox div class=calendar-date-label/div div class=calendar-day-label/div /div -- View this message in context:

Re: how to make a div containing ajax link clickable

2012-04-03 Thread jason
Sorry that last HTML snippet should be: -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-make-a-div-containing-ajax-link-clickable-tp4530016p4530456.html Sent from the Users forum mailing list

Re: how to make a div containing ajax link clickable

2012-04-03 Thread jason
Argh Nabble keeps stripping my HTML.. but it should be div class=calendar-box div class=calendar-date-label span wicket:id=monthYear /span /div div class=calendar-day-label span wicket:id=day /span /div /div -- View this message in context:

Debugging error

2012-04-03 Thread SudeepShakya
What may be the cause for this error : WicketMessage: Attempted to set property value on a null object. Property expression: date1 Value: Tue Apr 17 00:00:00 NPT 2012 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Debugging-error-tp4530892p4530892.html Sent from the

Re: Debugging error

2012-04-03 Thread Martin Grigorov
Hi, It means that you use something like: new PropertyModel(object, date), and 'object' is null, so you cannot set its 'date' property. On Wed, Apr 4, 2012 at 6:03 AM, SudeepShakya shakyasud...@live.com wrote: What may be the cause for this error : WicketMessage: Attempted to set property

Re: how to make a div containing ajax link clickable

2012-04-03 Thread Martin Grigorov
On Wed, Apr 4, 2012 at 12:55 AM, jason jason.novo...@gmail.com wrote: This is weird... If I do something like this taken from http://wicket.apache.org/apidocs/1.4/org/apache/wicket/ajax/AjaxEventBehavior.html WebMarkupContainer div=new WebMarkupContainer(div);        

Re: Debugging error

2012-04-03 Thread SudeepShakya
I used CompoundPropertyModel in form. Sir I am creating a form which takes inputs from the user and compares the values to the database and displays the required data from database. For this, I have created a class(containing only getters and setters) , a class for form, and a class for displaying

Re: Debugging error

2012-04-03 Thread Martin Grigorov
Show some code On Wed, Apr 4, 2012 at 7:19 AM, SudeepShakya shakyasud...@live.com wrote: I used CompoundPropertyModel in form. Sir I am creating a form which takes inputs from the user and compares the values to the database and displays the required data from database. For this, I have

Re: Wicket Application on GoDaddy

2012-04-03 Thread Satrix
Yes. I know that I can redirect all requests but the question is how to deploy Java Web App on their hosting because there is something like Parallels Panel and you have to upload your WAR file and the files are generated (cant edit them by hand). That's why my application is available under