Re: Please remove the spam post from the wicket forum

2014-01-03 Thread Martijn Dashorst
Much of the spam arrives from the wicket stuff lists/nabble forums. These are not moderated, and are hosted by sf.net. I searched for a bit on the nabble forums for spam solutions and they are unwilling to do anything (instead of implementing a proper spam solution like akismet). The only

reinitialize Page on session timeout with query param

2014-01-03 Thread haiko
Dear wicket users, I have a page with PageParameters which I am trying to recreate after a session timeout. I want to recreate the page after a session timeout with the input of the query param of the url. The first session timeout I can get the query param from the url and it succeeds in

Re: reinitialize Page on session timeout with query param

2014-01-03 Thread Martin Grigorov
Hi, The parameters are removed because most of the time they are not what you would expect to be. Initially you load the page with ?param=xxx. Then later (after the expiration time) you click on a link in this page, and this link may or may not have param=xxx in its url. But most probably it has

Re: Wicket-el example app and docs available

2014-01-03 Thread Martin Grigorov
Hi, I am really impressed by the progress you made so far ! Keep it going ! If you were not Mercurial user I'd suggest you to move the project to WicketStuff where it will be part of our regular releases. Martin Grigorov Wicket Training and Consulting On Thu, Jan 2, 2014 at 4:29 PM, Steve

Re: reinitialize Page on session timeout with query param

2014-01-03 Thread haiko
Martin, Thanks for your answer, that clarifies a lot. I think your suggestion would be an improvement to deal with situations as I described. Maybe a special wicket prefix for parameters would help to differentiate between parameters. Maybe an option for a bookmarkable page can be created

Converting Wicket to AngularJS/Spring MVC

2014-01-03 Thread Richard W. Adams
My corporation has decided to change its standard Web framework from Wicket to AngularJS/Spring MVCC (not my decision; was not asked for input). I am faced with the expensive prospect of having to convert a large app (runs on Jboss with about 250 Wicket/Web related classes). 1. Does anyone

Re: reinitialize Page on session timeout with query param

2014-01-03 Thread Martin Grigorov
On Fri, Jan 3, 2014 at 2:46 PM, ha...@dds.nl wrote: Martin, Thanks for your answer, that clarifies a lot. I think your suggestion would be an improvement to deal with situations as I described. Maybe a special wicket prefix for parameters would help to differentiate between parameters.

Re: Please remove the spam post from the wicket forum

2014-01-03 Thread Martijn Dashorst
I've gone back on the wicket-stuff forums till 2011 or so and removed most spam, also on the users@ forum and removed everything I could spot as spam. It appears that spammers have solved the nabble registration form in 2013 and caused a flood of spam... Martijn On Fri, Jan 3, 2014 at 10:02 AM,

Component hierarchy

2014-01-03 Thread Pierre Goupil
Good afternoon, all, and happy new year! I'm currently trying to implement a component: a jQuery dialog window which could have any component (extending Panel?) as its content. Let me explain: I'd have a dialog which would be added to the page by the client code of the dialog so that it's the

Re: Converting Wicket to AngularJS/Spring MVC

2014-01-03 Thread Andrea Del Bene
Hi, I don't have a direct experience migrating a Wicket app to a AngularJS/Spring MVCC, but in my current project we have a Wicket application with a Spring MVC part for REST APIs. We are using to different servlet filters, one for the Wicket part and one for Spring MVC. In this way you can use

Re: MultiThreading issues with Wicket.

2014-01-03 Thread eaglei22
I seem to be able to avoid this by limiting the amount of rows I print to the screen from the ListView. I turned it into a PageableListView and put a max of 200 per page, and the problem went away. -- View this message in context:

Re: MultiThreading issues with Wicket.

2014-01-03 Thread Paul Bors
As per the API: Exception invoked when when stale link has been clicked. The page should then be rerendered with an explanatory error message. Read more about the Sateless Links http://wicket.apache.org/guide/guide/chapter9.html#chapter9_5 And about Page Versions:

Problem with FormTester and selection on dropDownChoice

2014-01-03 Thread Kev
Hi, I have a form with a text field and a dropdownchoice with the OnSelectionChangedNotification enabled. When I try to test this form with a formTester, the method seems to reset the text field value. There is not this behavior when I start the app normally. Is it a bug, or is it my test who is

Re: Problem with FormTester and selection on dropDownChoice

2014-01-03 Thread Martin Grigorov
Hi, On Fri, Jan 3, 2014 at 6:15 PM, Kev kevin.se...@intesens.com wrote: Hi, I have a form with a text field and a dropdownchoice with the OnSelectionChangedNotification enabled. When I try to test this form with a formTester, the method seems to reset the text field value. There is not

Re: Problem with FormTester and selection on dropDownChoice

2014-01-03 Thread Kev
Martin Grigorov-4 wrote @Override protected void onSelectionChanged(final String newSelection) { // Something This is essential to your question, no? ^^ What do you do here ? In fact it's not very important because there is the problem even if the

Re: Converting Wicket to AngularJS/Spring MVC

2014-01-03 Thread Ernesto Reinaldo Barreiro
Hi, On Fri, Jan 3, 2014 at 1:54 PM, Richard W. Adams rwada...@up.com wrote: My corporation has decided to change its standard Web framework from Wicket to AngularJS/Spring MVCC (not my decision; was not asked for input). I am faced with the expensive prospect of having to convert a large

Rationale for Converting to AngularJS/Spring MVC

2014-01-03 Thread Richard W. Adams
I don't have first hand knowledge of the decision making process, but I understand there were two main factors: 1. Difficulty in changing/maintaining the intermediate corporate libraries, especially when considering whether to make the leap from Wicket 1.4.17 to 6.x. 2. A perception of

Re: Rationale for Converting to AngularJS/Spring MVC

2014-01-03 Thread Paul Bors
Both reasons provided don't carry much wight. 1) Dificulty of maintanance/upgrading between major releases Our webapp was our reporting tool which morphed into a system administative tool currently with 54k lines of code in well over 1k public classes (conform Sonar). I migrated the webapp

Re: Rationale for Converting to AngularJS/Spring MVC

2014-01-03 Thread Ernesto Reinaldo Barreiro
Hi, On Fri, Jan 3, 2014 at 6:12 PM, Richard W. Adams rwada...@up.com wrote: I don't have first hand knowledge of the decision making process, but I understand there were two main factors: 1. Difficulty in changing/maintaining the intermediate corporate libraries, especially when

Re: Problem with FormTester and selection on dropDownChoice

2014-01-03 Thread Sven Meier
formTester.setValue(textField, FOO); This sets a value for textField in the next request. formTester.select(dropDownChoice, 0); This sets a value for dropDownChoice into the next request and starts request processing. The values for textField and dropDownChoice are store in the input of

Re: Rationale for Converting to AngularJS/Spring MVC

2014-01-03 Thread Richard W. Adams
As to How was it difficult? Don't know. Nothing official came out. I'm so low on the food chain I don't have many details. All I know is what leaks out through the grapevine. In any case, whether the new frameworks will be better worse. I have no influence over what course the corporation

Re: problem with stateless + onInitialize() + request listener + ListView

2014-01-03 Thread Sven Meier
This could be a bug. Could you create a quickstart please and attach it to a JIRA issue? Many thanks Sven On 01/01/2014 07:38 PM, Martin Geisse wrote: Hi, thanks for the quick response. Just to be sure, I added code to detach the model after changing it, but nothing changed in behavior. In

Re: Component hierarchy

2014-01-03 Thread Paul Bors
Look over how ModalWindow is implemented in Wicket. It allows a Panel or WebPage as its content in a modal JS window. Heck, you might just want to style that. ~ Thank you, Paul Bors On Fri, Jan 3, 2014 at 8:41 AM, Pierre Goupil goupilpie...@gmail.comwrote: Good afternoon, all,

Re: MultiThreading issues with Wicket.

2014-01-03 Thread eaglei22
Here is the errors I get: Jan 03 17:04:20 WARN RequestCycleExtra- Jan 03 17:04:20 WARN RequestCycleExtra-Handling the following exception org.eclipse.jetty.io.RuntimeIOException: org.eclipse.jetty.io.EofException at

Re: MultiThreading issues with Wicket.

2014-01-03 Thread Paul Bors
Looks like your Jetty is calling the Wicket filter that in turn crashes because of an EOF Exception. How about a quick start? On Fri, Jan 3, 2014 at 6:06 PM, eaglei22 jchojnack...@gmail.com wrote: Here is the errors I get: Jan 03 17:04:20 WARN