Re: Cannot reproduce a WicketRuntimeException.

2011-12-19 Thread cosmindumy
Hi, I know it's off topic but I didn't want to create a separate topic for a simple question. I've got an error on production server and I cannot reproduce on my development machine. The error says : woUploadFilesContainer:calculateButton

Re: Cannot reproduce a WicketRuntimeException.

2011-12-12 Thread Martin Grigorov
Hi, The problem is that you have a stale link. Initially you rendered this repeater and then you updated it in the server side (the items inside have new ids) and you forgot to update it in at the client side. Then the user clicks such stale link and the server side cannot find an item with id ==

Re: Cannot reproduce a WicketRuntimeException.

2011-12-12 Thread cosmindumy
I'm afraid I didn't understand what exactly do you mean. How can I reproduce this in the development machine? This doesn't happened again. What should I update on client side? -- View this message in context:

Re: Cannot reproduce a WicketRuntimeException.

2011-12-12 Thread cosmindumy
Thanks for your idea. I manages to reproduce the error. It happens extremely rare. Here is the situation. I have a AjaxSubmitLink that make an action. To prevent multiple submit, I use a AjaxCallDecorate that calls a javascript that shows a loading image over the whole form, so that the form is

Re: Cannot reproduce a WicketRuntimeException.

2011-12-12 Thread cosmindumy
I put a setTimeout(..). I hope this will solve the problem. I didn't get this error after puting setTimeout(). Thanks for your response. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Cannot-reproduce-a-WicketRuntimeException-tp4185488p4186446.html Sent from the

Re: Cannot reproduce a WicketRuntimeException.

2011-12-12 Thread cosmindumy
Actually it didn't work. I put setTimeout(..). to delay the hiding of loading image but I still got the exception sometimes. Do you have any other ideea? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Cannot-reproduce-a-WicketRuntimeException-tp4185488p4186479.html