Re: Stateless and Ajax

2012-02-01 Thread zlatko99
Thank you all involved in this thread. With your help, I managed to build a login/registration form, totally stateless and submitted with ajax. (Thanks, Robert, for the referenced component, it works really good). This was a proof of concept for me that such a page could be built in Wicket. I

Stateless and Ajax

2012-01-31 Thread zlatko99
Hi all, Can someone explain to me (from an architecture's point of view) why every Ajax component added to a page makes that page statefull? If I set the stateless hint to true and turn off the page versioning, why is a session needed? The reason why I am asking this is because I want to have a

Re: Stateless and Ajax

2012-01-31 Thread zlatko99
Yes, now it's much more clear, thank you! But then, I'm curious to know why doesn't exist a component in Jolira's package that can submit stateless form by ajax button? Is it not possible for such component to exist or the reason is lacking effort on their side? If it is possible, can you give me

Re: Stateless and Ajax

2012-01-31 Thread zlatko99
Hi Martin, thank you for your advice and support. I just wanted to ask if this submitFormById() function is wrapped in some Wicket component so I can use it in an object-oriented manner, or am I supposed to call it manually by an onClick event of a button/link? If there is a ready-made