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
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
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
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
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
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