Re: question about HybridUrlCodingStrategy

2007-11-13 Thread Sebastiaan van Erk
Turns out I had a listview on the page which was generating new versions of the page. Setting setReuseItems(true) solved the versioning problem. (Which was basically the only real problem I was having). Regards, Sebastiaan Sebastiaan van Erk wrote: Hi, Thanks for the reply! Actually, in

Re: question about HybridUrlCodingStrategy

2007-11-12 Thread Matej Knopp
If the page is stateless, why are you using hybrid url coding strategy for it? You should just mount it. Also, even more important thing, is the page really stateless? Stateless pages don't have versions. Link is not a stateless component so if you use it on a page, it will make it statefull. As

Re: question about HybridUrlCodingStrategy

2007-11-12 Thread Sebastiaan van Erk
Hi, Thanks for the reply! Actually, in some cases the page is not stateless all the time (which is why I use that strategy), i.e. it starts out on a stateless form. Another reason why I use it on non-stateless pages is because the URL looks so much better. ;-) Anyway, I do use Link, so yes