AW: [Wicket-user] Save and reload scrollposition

2005-08-01 Thread pommeslk
Thanks, that works great! Lasse -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matej Knopp Gesendet: Montag, 1. August 2005 08:46 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Save and reload scrollposition In one project, I

Re: [Wicket-user] Save and reload scrollposition

2005-07-31 Thread Matej Knopp
In one project, I did this using javascript, it worked fairy well. In each link I called function, that saved the scroll position as cookie and after refresh I reloaded the position and scrolled the document. function setCookie(name, value, expires, path, domain, secure) { var curCookie

Re: [Wicket-user] Save and reload scrollposition

2005-07-31 Thread Martijn Dashorst
Or use the JavaScript function 'focus()'? Martijn Jonathan Locke wrote: just an idea... but maybe some fancy trick with anchor links? Phil Kulak wrote: You mean you want the browser to have the exact same window position after the click? The best way would be to use JavaScript instead of a

Re: [Wicket-user] Save and reload scrollposition

2005-07-31 Thread Jonathan Locke
just an idea... but maybe some fancy trick with anchor links? Phil Kulak wrote: You mean you want the browser to have the exact same window position after the click? The best way would be to use JavaScript instead of a full page reload. On 7/31/05, pommeslk <[EMAIL PROTECTED]> wrote: H

Re: [Wicket-user] Save and reload scrollposition

2005-07-31 Thread Phil Kulak
You mean you want the browser to have the exact same window position after the click? The best way would be to use JavaScript instead of a full page reload. On 7/31/05, pommeslk <[EMAIL PROTECTED]> wrote: > > > > Hi, > > in my application I have a table where each row can be selected for ed

[Wicket-user] Save and reload scrollposition

2005-07-31 Thread pommeslk
Hi, in my application I have a table where each row can be selected for editing like in Phils Weblog (http://jroller.com/page/pKulak/20050729). But when I click on the row I always start at the top of the page. How can I save the scroll position and load it after the refresh? Is there any