Re: Append anchor to form redirect URL?

2007-09-04 Thread Kent Tong
replacementValue) { return currentValue + #myanchor; } }); -- View this message in context: http://www.nabble.com/Append-anchor-to-form-redirect-URL--tf4369650.html#a12475266 Sent from the Wicket - User mailing list archive

Append anchor to form redirect URL?

2007-09-02 Thread Jeremy Thomerson
On a 1.2.6 app, I have a form at the bottom of a page. The page is basically a forum thread page, with a long list of replies, etc, and you reply at the bottom. I have a SubmitLink that allows you to add files, and then it returns you to the form. Of course, it redirects back to a page like

Re: Append anchor to form redirect URL?

2007-09-02 Thread Matej Knopp
It will not help you append the hash to submitlink, as wicket redirect afterwards. So the hash would be discarded anyway. Unfortunately we can't just preserve it during request, as the hash doesn't leave the browser, so it's not possible to get the actual value before issuing a redirect. One