Re: Upgrade to 6.5.0

2013-01-27 Thread Sven Meier
You're sure the application class is com.myApp.myAppApp? Looks like an accidental duplication of myApp. Sven On 01/26/2013 11:36 PM, Stephen Walsh wrote: Caused by: java.lang.ClassNotFoundException: com.myApp.myAppApp from [Module deployment.myApp-

Re: [6.0] CouldNotLockPageException

2013-01-27 Thread Martin Grigorov
Better find out why it takes that long and try to make the request processing faster. On Sat, Jan 26, 2013 at 9:21 PM, Pierre Goupil goupilpie...@gmail.comwrote: Thanks a lot, it works! Cheers, Pierre On Sat, Jan 26, 2013 at 7:00 PM, Sven Meier s...@meiers.net wrote: You can adjust

Re: Load Image in IE fails

2013-01-27 Thread Martin Grigorov
Try the solution explained at http://markmail.org/thread/5sbhcqbjxxb7arwy On Sat, Jan 26, 2013 at 8:44 PM, Satrix satrix...@gmail.com wrote: Hi, Im using 1.5.8 Wicket version and IE 9. Regards -- View this message in context:

Re: [6.0] CouldNotLockPageException

2013-01-27 Thread Pierre Goupil
As I said, it's only when using (Eclipse) debugger. When I go from methods to breakpoints and back again, only one minute is a bit short. But with Sven's solution, I have what I need. Cheers, men! Pierre On Sun, Jan 27, 2013 at 12:35 PM, Martin Grigorov mgrigo...@apache.orgwrote: Better

Preventing inner form processing?

2013-01-27 Thread Sebastien
Hi all, I have an inner form, and I would like this inner form to not being processed when the parent form is submitted, like described here: https://cwiki.apache.org/WICKET/conditional-validation.html The problem, in my case, is that this inner-form is posted with 'wicketSubmitFormById', so do

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
I did a find and replace to remove the app name. That was an oversight. __ Stephen Walsh | http://connectwithawalsh.com On Jan 27, 2013, at 5:07, Sven Meier s...@meiers.net wrote: You're sure the application class is com.myApp.myAppApp? Looks like an accidental

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
Here was the original error: 16:29:29,557 INFO [org.jboss.as.repository] (management-handler-thread - 8) JBAS014900: Content added at location /usr/share/jboss-as-7.1.1.Final/standalone/data/content/2c/fd9a0ad0a567de3c4bfde63b541413297ba7f5/content 16:29:29,617 INFO

[ANNOUNCE] WicketStuff 1.5.9.1 is released

2013-01-27 Thread Martin Grigorov
Hello, WicketStuff Core projects version 1.5.9.1 have been released and shortly will be available at Maven Central repository. They are built against Apache Wicket 1.5.9. The changelog is: Martin Grigorov (4): Merge pull request #167 from fieona/core-1.5.x Merge pull request #168

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
Also, it seems like this might be a deployment issue, but I'm not sure. I'm using mvn package jboss-as:deploy to get my package into jboss, and after rolling back to 6.0.0, I'm still having the same issue 09:45:27,020 INFO [org.jboss.as.repository] (management-handler-thread - 1)

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
I'm using the default web.xml. I've never touched it since I've started, but here it is: ?xml version=1.0 encoding=ISO-8859-1? web-app xmlns=http://java.sun.com/xml/ns/javaee; xmlns:xsi= http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/javaee

ResizableBehavior multiple resizable panels on a page

2013-01-27 Thread Pieter Claassen
I have multiple panels on a page, each once constructed as follows: * public EditableQuestionPanel(String id, final QuestionBaseWebModel questionBaseWebModel, final TemplateWebModel templateWebModel, final QuestionEditPanel panel) {* *super(id);* *Options options = new Options();*

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
Well, I got a clean install of jboss and used the web interface to add my war to the deployment area. When I tried to enable it, I got the same errors as below. So I'm still not up and running with either 6.0.0 or 6.5.0. :( On Jan 27, 2013, at 10:03 AM, Stephen Walsh

Re: ResizableBehavior multiple resizable panels on a page

2013-01-27 Thread Sebastien
Hi Pieter, If you have multiple panel, they all have the same html-id (#resizable). (and so jquery statement $(#resizable) will only take the first one) What you need is to have different (rendered) html ids for each panels. So, you can simply do: add(new ResizableBehavior(# +

Re: Upgrade to 6.5.0

2013-01-27 Thread procrastinative.developer
I think that Sven has right about war duplication. Jboss maven plugin has 3 goals to manage deployments: deploy, redeploy, undeploy. If you use only deploy goal, jboss could leave some trashes in deployment location. So if you reinstall JBoss, the old configuration files could still be on your

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
I'll have to double check on this for sure when I get home, but a simple JBOSS question. I can't just run mvn package jboss-as:deploy over and over again? This has seemed to work for months up until this point. Obviously I need to discontinue if it's not good practice; I just didn't know any

Re: ResizableBehavior multiple resizable panels on a page

2013-01-27 Thread Pieter Claassen
Thanks, that did the job. Pieter On Sun, Jan 27, 2013 at 5:35 PM, Sebastien seb...@gmail.com wrote: Hi Pieter, If you have multiple panel, they all have the same html-id (#resizable). (and so jquery statement $(#resizable) will only take the first one) What you need is to have different

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
Just to clarify, the class is not out of sync, the applications (Eclipse, JBOSS, etc.) ___ Stephen Walsh | http://connectwithawalsh.com On Sun, Jan 27, 2013 at 11:46 AM, Stephen Walsh step...@connectwithawalsh.com wrote: I'll have to double check on this

Re: Upgrade to 6.5.0

2013-01-27 Thread Stephen Walsh
Got it working now. I think I had some stuff that was keeping the new install of JBOSS from actually being uninstalled. Thanks for the help. Now to figure out why Maven keeps building with Java 1.5 instead of 1.6. ___ Stephen Walsh |

JQuery - best practice

2013-01-27 Thread Pieter Claassen
This is a general best practice question. I am using wicket-jquery-ui because I don't seem to be able to find a resizable panel in the internal wicket ajax widgets. 1. Is there no problem loading new jquery libraries over the wicket implementation? What is best practice? 2. I am looking for a way

Re: JQuery - best practice

2013-01-27 Thread Ernesto Reinaldo Barreiro
Hi, On Mon, Jan 28, 2013 at 7:45 AM, Pieter Claassen pie...@musmato.com wrote: This is a general best practice question. I am using wicket-jquery-ui because I don't seem to be able to find a resizable panel in the internal wicket ajax widgets. 1. Is there no problem loading new jquery

Re: [6.0] weird exception about super.onBeforeRender()

2013-01-27 Thread Martin Grigorov
Hi, Put a breakpoint at org.apache.wicket.Component#internalBeforeRender, in the second 'if' clause that throws this exception. This way you can see details about the problematic component - like its type, its id, its parents, etc. This way you should be able to identify which parent class

Re: Preventing inner form processing?

2013-01-27 Thread Martin Grigorov
Hi, The signature of this method is (Wicket 1.5.x and earlier) : function wicketSubmitFormById(formId, url, submitButton, successHandler, failureHandler, precondition, channel) i.e. there is a way to specify the submitting button. If you use the inputName of a button from the outer form then