Question about stateless forms

2011-01-15 Thread Major Péter
Hi, I'm experiencing, that if you have a stateless form on a page, and the user session expires, then Wicket reinstantiates the given page with the forms POST parameters as PageParameters. Is this the correct behaviour? Am I the only one suffering from this? If the user is at showuser/id/123

Re: Question about stateless forms

2011-01-15 Thread Igor Vaynberg
my first gut feeling is that if the form is stateless it should use the page's url as its action. this way page parameters are preserved and we can properly parse them out of the query string without mixing them with form parameters -igor 2011/1/15 Major Péter : > Hi, > > I'm experiencing, that i

Re: Question about stateless forms

2011-01-18 Thread Major Péter
So is this a bug? Should I create a JIRA issue for this? Thanks, Peter 2011-01-15 23:14 keltezéssel, Igor Vaynberg írta: my first gut feeling is that if the form is stateless it should use the page's url as its action. this way page parameters are preserved and we can properly parse them out of

Re: Question about stateless forms

2011-01-18 Thread Igor Vaynberg
not sure if its a "bug", but its definitely a better way of handling stateless form submits i think. and yes, file a jira. -igor 2011/1/18 Major Péter : > So is this a bug? Should I create a JIRA issue for this? > > Thanks, > Peter > > 2011-01-15 23:14 keltezéssel, Igor Vaynberg írta: >> >> my fi