Connecting Tech Pros Worldwide Help | Site Map

Popup windows question...

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 23rd, 2005, 07:07 PM
Kevin Lam
Guest
 
Posts: n/a
Default Popup windows question...

Hi all,

I am writing an application which requires using a popup windows to
edit the detail of a record.

The popup windows is created by it's parent which shows the detail of
the record, which also has a button to delete the record.

My question is that, how do I make the popup to stay on top of the
parent all the time (to make sure, the record is not deleted when I am
trying to edit it via the popup...)

I have tried using a loop to keep the popup stay on focus... but since
my popup has a drop down selection box, the loop doesn't allow me to
have enough time to choose the option before the popup request a focus
again...

Can anyone help please

Thx

  #2  
Old July 23rd, 2005, 07:07 PM
kaeli
Guest
 
Posts: n/a
Default Re: Popup windows question...

In article <e9df0da0.0504110301.22168eb6@posting.google.com >,
sorchu_bf@hotmail.com enlightened us with...[color=blue]
> Hi all,
>
> I am writing an application which requires using a popup windows to
> edit the detail of a record.
>
> The popup windows is created by it's parent which shows the detail of
> the record, which also has a button to delete the record.
>
> My question is that, how do I make the popup to stay on top of the
> parent all the time (to make sure, the record is not deleted when I am
> trying to edit it via the popup...)[/color]

Are you sure this solves the problem?
B/c it doesn't sound right to me.
Double-check your logic here before moving on.

(are you sure it can't be deleted by another user while the current one is
editing it?? do you lock it? why not just fail gracefully if the record isn't
there?)
[color=blue]
>
> I have tried using a loop to keep the popup stay on focus... but since
> my popup has a drop down selection box, the loop doesn't allow me to
> have enough time to choose the option before the popup request a focus
> again...
>
> Can anyone help please[/color]

For MSIE only, use modal dialog.
If you need it to work in other browsers, I'd recommend not using popups at
all for this, as trying to make a modal dialog work cross-browser can be a
PITA. Use a floating div that gets the content from the server instead.

--
--
~kaeli~
A plateau is a high form of flattery.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

  #3  
Old July 23rd, 2005, 07:07 PM
RobB
Guest
 
Posts: n/a
Default Re: Popup windows question...

Kevin Lam wrote:[color=blue]
> Hi all,
>
> I am writing an application which requires using a popup windows to
> edit the detail of a record.
>
> The popup windows is created by it's parent which shows the detail of
> the record, which also has a button to delete the record.
>
> My question is that, how do I make the popup to stay on top of the
> parent all the time (to make sure, the record is not deleted when I[/color]
am[color=blue]
> trying to edit it via the popup...)
>
> I have tried using a loop to keep the popup stay on focus... but[/color]
since[color=blue]
> my popup has a drop down selection box, the loop doesn't allow me to
> have enough time to choose the option before the popup request a[/color]
focus[color=blue]
> again...
>
> Can anyone help please
>
> Thx[/color]

<script type="text/javascript">

var ftimer = null;
var OK2focus = true;

self.onblur = function()
{
ftimer = setTimeout('if(OK2focus)self.focus()', 100);
}

</script>
..........
..........
<select onfocus="OK2focus=false;" onblur="OK2focus=true;self.onblur()">

[untested]

 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,989 network members.