Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > Set focus after showing an alert?

Reply
Thread Tools

Set focus after showing an alert?

 
 
Martin
Guest
Posts: n/a
 
      09-03-2004
I have the following function in the onchange event of several text
boxes. If the user enters an invalid number the alert displays. I
would like to return the user to that same field after he closes the
alert but setting the focus as I'm doing here doesn't do it (instead,
the focus goes to the next field).

Any suggestions as to hwo I can make this work?

Thanks.

function checkIt(fldID,maxValue,btnID){
if (document.getElementById(fldID).value > maxValue)
{alert('Invalid Lane Number');
document.getElementById(btnID).disabled=true;
document.getElementById(fldID).focus;}
else
document.getElementById(btnID).disabled=false;
}
 
Reply With Quote
 
 
 
 
Michael Winter
Guest
Posts: n/a
 
      09-03-2004
On Fri, 03 Sep 2004 09:36:57 -0700, Martin <>
wrote:

> I have the following function in the onchange event of several text
> boxes. If the user enters an invalid number the alert displays. I would
> like to return the user to that same field after he closes the alert but
> setting the focus as I'm doing here doesn't do it (instead, the focus
> goes to the next field).
>
> Any suggestions as to hwo I can make this work?
>
> Thanks.
>
> function checkIt(fldID,maxValue,btnID){


If this is called from an intrinsic event, it would be much easier, and
more reliable, to follow the pattern below:

<input type="..." ... onchange="checkIt(this,<num>,<id>)">

function checkIt(field, maxVal, btnID) {
var btn = field.form.elements[btnID];
// ...
}

If you do insist on using document.getElementById, at least save the
resulting references instead of calling the method repeatedly.

> if (document.getElementById(fldID).value > maxValue)


Assuming that the element represented by fldID should contain a number
(the comparison wouldn't make much sense, otherwise), it would be best to
check that the value actually *is* a number, otherwise you might get
strange results.

> {alert('Invalid Lane Number');
> document.getElementById(btnID).disabled=true;
> document.getElementById(fldID).focus;}


You actually need to call the method!

> else
> document.getElementById(btnID).disabled=false;


I hope that the button isn't disabled by default. It'll be quite a problem
for users without Javascript.

> }


Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
 
Reply With Quote
 
 
 
 
Randy Webb
Guest
Posts: n/a
 
      09-03-2004
Martin wrote:

> I have the following function in the onchange event of several text
> boxes. If the user enters an invalid number the alert displays. I
> would like to return the user to that same field after he closes the
> alert but setting the focus as I'm doing here doesn't do it (instead,
> the focus goes to the next field).
>
> Any suggestions as to hwo I can make this work?
>
> Thanks.
>
> function checkIt(fldID,maxValue,btnID){
> if (document.getElementById(fldID).value > maxValue)
> {alert('Invalid Lane Number');
> document.getElementById(btnID).disabled=true;
> document.getElementById(fldID).focus;}


focus(), not focus.

> else
> document.getElementById(btnID).disabled=false;
> }



--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
 
Reply With Quote
 
Martin
Guest
Posts: n/a
 
      09-03-2004
On Fri, 03 Sep 2004 17:00:21 GMT, "Michael Winter"
<> wrote:


>If you do insist on using document.getElementById, at least save the
>resulting references instead of calling the method repeatedly.


OK, I changed that.

>You actually need to call the method!

I thought I was doing that. If you're referring to the missing
parentheses (as Randy pointed out) then I added them. But it still
doesn't set the focus to the original field.

>I hope that the button isn't disabled by default. It'll be quite a problem
>for users without Javascript.


Yes the button is disabled by default. The button enables the user to
continue with the process after verifying that the changed value is
valid - I don't want them to continue if that's not the case.

As far as "users without Javascript enabled" is concerned, there won't
be any such thing. This is not what one would call a "normal" web site
that just anybody can use. It's the user interface to an industrial
process. It will be used by a limited number of people on an intranet.
By definition they must have Javascript enabled. And, a number of the
pages are useable only in IE (because I'm using a lot of VML
graphics). They have to log in with a userid and password to even view
any of the pages. There are some other restrictions, too.

Back to my original question. Any thoughts as to how I can get the
focus to go back to the original field?

Thanks.
 
Reply With Quote
 
Martin
Guest
Posts: n/a
 
      09-04-2004

>Any suggestions as to how I can make this work?
>
>Thanks.
>
>function checkIt(fldID,maxValue,btnID){
>if (document.getElementById(fldID).value > maxValue)
>{alert('Invalid Lane Number');
>document.getElementById(btnID).disabled=true;
>document.getElementById(fldID).focus;}
>else
>document.getElementById(btnID).disabled=false;
>}


After clearing up the syntax error as noted by Michael & Randy, this
function still did not work - or so I thought. Some further messing
around with it revealed that apparently the focus IS being set to the
input field (fldID) but then (I'm guessing) the TabKey keystroke
executes and moves the cursor to the next field!

I found that, if I mouse away from the field then the cursor will go
back to the field and stay there. But keying away (with either the tab
or Enter keys) results in the focus ending up somewhere else. (in
fact, hitting <Enter> clicks an enabled button on the form AFTER
closing the alert box!)

I also found that, if I call this function from the onblur event
(instead of onchange), it works perfectly. No matter which key is used
the focus goes to the specified field and stays there. Apparently,
onchange and onblur occur at different points relative to the
keystroke itself.

Since I don't want to use onblur, my question now becomes: how can I
(in the function script) cancel the keystroke that occurred. (I'm
coming from a Visual basic perspective here - in VB cancelling a
keystroke is trivial). Is this possible in Javascript?

Thanks.

 
Reply With Quote
 
Randy Webb
Guest
Posts: n/a
 
      09-05-2004
Martin wrote:

>>Any suggestions as to how I can make this work?
>>
>>Thanks.
>>
>>function checkIt(fldID,maxValue,btnID){
>>if (document.getElementById(fldID).value > maxValue)
>>{alert('Invalid Lane Number');
>>document.getElementById(btnID).disabled=true;
>>document.getElementById(fldID).focus;}
>>else
>>document.getElementById(btnID).disabled=false;
>>}

>
>
> After clearing up the syntax error as noted by Michael & Randy, this
> function still did not work - or so I thought. Some further messing
> around with it revealed that apparently the focus IS being set to the
> input field (fldID) but then (I'm guessing) the TabKey keystroke
> executes and moves the cursor to the next field!
>
> I found that, if I mouse away from the field then the cursor will go
> back to the field and stay there. But keying away (with either the tab
> or Enter keys) results in the focus ending up somewhere else. (in
> fact, hitting <Enter> clicks an enabled button on the form AFTER
> closing the alert box!)
>
> I also found that, if I call this function from the onblur event
> (instead of onchange), it works perfectly. No matter which key is used
> the focus goes to the specified field and stays there. Apparently,
> onchange and onblur occur at different points relative to the
> keystroke itself.
>
> Since I don't want to use onblur, my question now becomes: how can I
> (in the function script) cancel the keystroke that occurred. (I'm
> coming from a Visual basic perspective here - in VB cancelling a
> keystroke is trivial). Is this possible in Javascript?


Instead of trying to cancel the keystroke, put a setTimeout call on your
focus(). That way, it has time to move to the next field, then the
script will set focus where you want it.

Instead of:
document.getElementById(fldID).focus();

Use something like this:

var myVar = null;

And then inside your function, set myVar = to the fieldID:

myVar = fldID;

And then:
myVar = setTimeout(setFocus,1000)


And then:

function setFocus(){
document.getElementById(fldID).focus();
}

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
this.window.focus() vs. window.focus() vs. this.focus() Roger Javascript 3 03-08-2007 08:53 PM
Why does putting focus on textbox also set focus to submit jw56578@gmail.com Javascript 2 06-06-2005 08:20 PM
Re: How can I set focus on a control after a post-back? ashelley@inlandkwpp.com ASP .Net 5 06-27-2004 03:50 AM
how to set focus on a textbox after onclick of a button sumit ASP .Net 1 11-08-2003 07:40 AM
Unable to set focus to textfield in a applet if browser is set to Sun JRE 1.4 Manav Java 0 10-15-2003 03:42 PM



Advertisments