RE: smart navigation

2004-11-24 Thread struts lover
he page loade first: > > > SetScrollTo("someIDName"); > > > Now, go try it! :) > > Regards, > David > > -Original Message- > From: struts lover [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 24, 2004 12:49 PM > To: Struts Users Mailing L

RE: smart navigation

2004-11-24 Thread David G. Friedman
u are 100% positive the rest of the page loade first: SetScrollTo("someIDName"); Now, go try it! :) Regards, David -Original Message- From: struts lover [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 12:49 PM To: Struts Users Mailing List Subject: RE: s

RE: smart navigation

2004-11-24 Thread struts lover
ly move the > tag into the visible portion of the browser window. > > Regards, > David > > -Original Message- > From: struts lover [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 24, 2004 12:29 PM > To: Struts Users Mailing List; Dakota Jack > Subject: Re:

RE: smart navigation

2004-11-24 Thread David G. Friedman
CTED] Sent: Wednesday, November 24, 2004 12:29 PM To: Struts Users Mailing List; Dakota Jack Subject: Re: smart navigation Thanks Jack, I am not very good at javascript. Can you please again explain how to use it. Thanks once again. --- Dakota Jack <[EMAIL PROTECTED]> wrote: > Also,

Re: smart navigation

2004-11-24 Thread struts lover
Thanks Jack, I am not very good at javascript. Can you please again explain how to use it. Thanks once again. --- Dakota Jack <[EMAIL PROTECTED]> wrote: > Also, if you want similar things with other > browsers, here is a Mozilla deal: > > > function SetScrollTo(strControlID) > { > var > objC

RE: smart navigation

2004-11-24 Thread David G. Friedman
asn't as thoughtful: I didn't think to do the try() or the scrollTop=... trick. Thanks for the new info! Regards, David -Original Message- From: Dakota Jack [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 10:13 AM To: Struts Users Mailing List Subject: Re: smart na

Re: smart navigation

2004-11-24 Thread Dakota Jack
Smart navigation is a feature of the browser, allowing a page to be refreshed while keeping scroll position. Consequently, the use of this is in HTML, not JSP or ASP. They build it. Right? Jack On Wed, 24 Nov 2004 05:39:09 -0800 (PST), struts lover <[EMAIL PROTECTED]> wrote: > Hello Everyone,

Re: smart navigation

2004-11-24 Thread Dakota Jack
Also, if you want similar things with other browsers, here is a Mozilla deal: function SetScrollTo(strControlID) { var objControl=document.getElementById(strControlID); document.body.scrollTop = objControl.offsetTop; //maybe object is not focusable, hidden or disabled. try { objControl.focus();