472,792 Members | 2,036 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,792 software developers and data experts.

Please Help! How to bring focus back on previous frame element

Hi:

Currently I am having a problem with my webpage. My page consist of
two frames, one consist of input text field and the other contains
link for different pop-up windows. The problem follows:

1. At the beginning, focus is placed on an input text field of the
first frame (so there's a blinking cursor on such field).

2. Then users click on a link of the second frame (thus focus is set
on the clicked link) and a second window popup.

3. Right after users performed their operations on the pop-up window,
they will close the window and will like to have focus brought back to
the previously focused text field of the first field (Notice: After
users close the pop-up window, the previously focused text input still
have a blinking cursor and you may type on the field. However, if you
tab out, you would fine that the focus is on the clicked link of the
second frame. That means the focus is not on the first frame's text
field and if such text field contains an onchange function, such
function will not be activated as users tab out).

My problem is as users click on the link of the second frame, the
focus is placed on the selected link and a window pops up. How can I
have the focus placed back on the first frame's text field after
closing the pop-up so that I can enter data and tab out to activate
the onchange function of such text field. Having a blinking cursor of
such text field while not really having the focus on such field seems
confusing to users.

Thanks very much for every bit of help.

Dai
Jul 23 '05 #1
3 2552
In article <64**************************@posting.google.com >,
da**********@hotmail.com enlightened us with...

My problem is as users click on the link of the second frame, the
focus is placed on the selected link and a window pops up. How can I
have the focus placed back on the first frame's text field after
closing the pop-up so that I can enter data and tab out to activate
the onchange function of such text field. Having a blinking cursor of
such text field while not really having the focus on such field seems
confusing to users.


Have a global function in the frame that sets a variable to an element
each time one gets focus. This keeps track of where the user is. In the
onFocus of the window, set cursor focus to that element. Don't forget to
test it for null or set to a default for the first load before the user
has actually focused anything.

Note that i do not recommend this for internet use. Intranet and CD
would be fine.

--
--
~kaeli~
Going to church doesn't make you a Christian any more than
standing in a garage makes you a car.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #2
kaeli <ti******@NOSPAM.comcast.net> wrote in message news:<MP************************@nntp.lucent.com>. ..
In article <64**************************@posting.google.com >,
da**********@hotmail.com enlightened us with...

My problem is as users click on the link of the second frame, the
focus is placed on the selected link and a window pops up. How can I
have the focus placed back on the first frame's text field after
closing the pop-up so that I can enter data and tab out to activate
the onchange function of such text field. Having a blinking cursor of
such text field while not really having the focus on such field seems
confusing to users.


Have a global function in the frame that sets a variable to an element
each time one gets focus. This keeps track of where the user is. In the
onFocus of the window, set cursor focus to that element. Don't forget to
test it for null or set to a default for the first load before the user
has actually focused anything.

Note that i do not recommend this for internet use. Intranet and CD
would be fine.

--


Thanks Kaeli, but I wonder other than setting a global variable to
remember the last focused field and automatically set back the focus,
is there any way for users to click on a link of another frame and
then after such link brings up a pop-up and close the window, the
focus can be brought back the original frame. Is there such innate
Javascript function since somehow the original frame's text field
continue to have a blinking cursor throughout the process, I wonder if
there's any function to have the focus stay on the field instead of
sending the focus to link of the second frame when it is clicked.

Thanks for all the time and help!
Jul 23 '05 #3
In article <64**************************@posting.google.com >,
da**********@hotmail.com enlightened us with...

Thanks Kaeli, but I wonder other than setting a global variable to
remember the last focused field and automatically set back the focus,
is there any way for users to click on a link of another frame and
then after such link brings up a pop-up and close the window, the
focus can be brought back the original frame. Is there such innate
Javascript function since somehow the original frame's text field
continue to have a blinking cursor throughout the process, I wonder if
there's any function to have the focus stay on the field instead of
sending the focus to link of the second frame when it is clicked.

Thanks for all the time and help!


Okay, if I understand you, you want to focus the frame.
So, sure, assuming you know the name of the frame you want focused.
self.parent.frames['framename'].focus();
should work from any of the frames in the set.
If you want to do it from the popup, do
self.opener.parent.frames['framename'].focus();

Both assume a simple frameset that doesn't have a frameset within a
frameset type setup. If you have a complex frameset, replace 'parent'
with 'top'. Warning: using 'top' will break if a foreign frameset puts
your frames inside it.

HTH

--
--
~kaeli~
A midget fortune teller who escapes from prison is a small
medium at large.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: duikboot | last post by:
Hi all, I'm trying to export a view tables from a Oracle database to a Mysql database. I create insert statements (they look alright), but it all goes wrong when I try to execute them in Mysql,...
3
by: Lodewijk van Haringhal | last post by:
I'am new with javascritping not with programming. Is there nobody who can help me with ths simple promblem? :) Please, please give me a hint. Please help me with this script. I have two lists in...
6
by: James Walker | last post by:
Can some one help I get an error of 'checkIndate' is null or not an object can someone please help. I can't work out why Thanks in advance James <form> <td height="24" colspan="7"...
0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
13
by: sd00 | last post by:
Hi all, can someone give me some coding help with a problem that *should* be really simple, yet I'm struggling with. I need the difference between 2 times (Target / Actual) However, these times...
6
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.