How do make the page refresh into the same position of the page previously?

I often have to save, delete, or update records. That could be a very
long list, or multi pages. How can I come back to the same position I
was before the page refresh?

Thank you very much!

suki

An html link anchor?

then you just need to reload the page at
/x.html#where-i-want-to-jump-down-to

Cheers,
Robby

On Thu, Jun 4, 2009 at 11:46 AM, suki[email protected] wrote:

I often have to save, delete, or update records. That could be a very
long list, or multi pages. How can I come back to the same position I
was before the page refresh?

Thank you very much!

suki


Robby R.
Chief Evangelist, Partner

PLANET ARGON, LLC
design // development // hosting w/Ruby on Rails

http://robbyonrails.com/
http://twitter.com/planetargon
aim: planetargon

+1 503 445 2457
+1 877 55 ARGON [toll free]
+1 815 642 4068 [fax]

Thanks, Robby.

Normally, in Controller, I have

redirect_to “/user”

there is no place to put this anchor. Maybe after the view, i.e.
index.rhtml#where-i-want-to-jump-down-to? Where can I put this anchor
in controller, then the system will be able to render to such a view
with anchor.

Thank you very much!

You can do this using javascript scroll method.
do some google.

-sandip

On Fri, Jun 5, 2009 at 1:13 AM, suki [email protected] wrote:

with anchor.

http://planetargon.com/http://robbyonrails.com/http://twitter.com/planetargon

aim: planetargon

+1 503 445 2457
+1 877 55 ARGON [toll free]
+1 815 642 4068 [fax]


Ruby on Rails Developer

you can do redirect_to “/user#anchor” or redirect_to :controller =>
‘/user’,
:anchor => ‘anchor’