Re: How to prevent a concurrent click on ajax links (AjaxFallbackLink)

2013-07-13 Thread Steamus
Thank you All! Thank you, Igor! It works excellent. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-prevent-a-concurrent-click-on-ajax-links-AjaxFallbackLink-tp4660226p4660251.html Sent from the Users forum mailing list archive at Nabble.com.

Recommendation service for form components

2013-07-13 Thread Илья Нарыжный
Hello, Please advise me how following feature can be implemented in beloved Wicket: We have a lot of forms and most of form components are used for configuring of subsequent outputs: graphics, tables, etc. So this forms components are used for output configuration. And it will be nice if such

Re: Invitation to become Wicket committer: Andrea del Bene

2013-07-13 Thread Andrea Del Bene
Hi Martijn, thank you so much for your support! It's a real honor to be part of your team! I will start to work on the required paperwork as soon as possible! Andrea. Hello Andrea, The Wicket Project Management Committee (PMC) hereby offers you committer privileges to the project. These

Re: Invitation to become Wicket committer: Andrea del Bene

2013-07-13 Thread Martijn Dashorst
On 13 jul. 2013, at 22:15, Andrea Del Bene an.delb...@gmail.com wrote: Hi Martijn, thank you so much for your support! It's a real honor to be part of your team! I will start to work on the required paperwork as soon as possible! Andrea. Hello Andrea, The Wicket Project Management

Mutliple forms - single login popup

2013-07-13 Thread Jeff Schneller
Using 1.5.x. I have multiple forms (minimum of 2 but could be any number) on my page being put on the page as a ListView. Each form has its own model and 2 buttons within it that perform some action on its model. Similar to the facebook newsfeed where each news article has its own like and

RE: Recommendation service for form components

2013-07-13 Thread Paul Bors
Why not persist to a db via Hibernate and Spring per say? Saving all this to the session would slow down your web server considerably. You can also use cookies if you'd like, but that's not going to work if the user has them turned off. ~ Thank you, Paul Bors -Original Message- From:

RE: Mutliple forms - single login popup

2013-07-13 Thread Paul Bors
Keep a flag in your customized Session for when the user is logged in. I keep the ID of the user record from the db so that if I need the user POJO I can lazy load it later (say to e-mail the user or to show the user's name under the My Profile page etc). If that is null, then show your

RE: Recommendation service for form components

2013-07-13 Thread Paul Bors
Sorry, by slow down I mean it would serialize all those model objects under the session for no reason. It will eat up a lot of memory unnecessary. Try to add the DebugBar to the parent of all your pages so you can track the session's memory consumption:

Re: Recommendation service for form components

2013-07-13 Thread Илья Нарыжный
It's not a problem. I can serialize default values to any required place. But I want to implement that in elegant way. Idea with Behavior seams to me quite elegant, but I didn't find way to intercept last value of the form component. 2013/7/14 Paul Bors p...@bors.ws Sorry, by slow down I mean

RE: Recommendation service for form components

2013-07-13 Thread Paul Bors
If you going to place too much in the user's session what's going to happen when you'll have 100 users with 10 form fields? You'll end up serializing about 1000 object at least! If not more... Is a memory hug, but if you must okay... we'll run with it... To grab the last value of a component you