Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
pop up dialogue for 'Netscape'
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Rudolf Henning  
View profile  
 More options May 25 2001, 8:32 am
Newsgroups: microsoft.public.scripting.jscript
From: "Rudolf Henning" <Rudo...@Hotmail.com>
Date: Fri, 25 May 2001 14:28:01 +0200
Local: Fri, May 25 2001 8:28 am
Subject: pop up dialogue for 'Netscape'
Does someone know a way to "simulate" the showModalDialog function so the
non IE browsers can also make use of a dialogue window where a user can
select a value that needs to be returned to the parent window?

The showModalDialog method allow for a second parameter that is a data
"structure" which used by the child window and can be passed back to the
parent page afterwards. This is the functionality that I also need to be
working in e.g. Netscape 4.7x.

thanks

please also reply to my email address as well.

Rudolf Henning
Rudo...@Hotmail.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Martin Honnen  
View profile  
 More options May 27 2001, 7:46 am
Newsgroups: microsoft.public.scripting.jscript
From: Martin Honnen <Martin.Hon...@t-online.de>
Date: Sun, 27 May 2001 13:41:43 +0200
Local: Sun, May 27 2001 7:41 am
Subject: Re: pop up dialogue for 'Netscape'
You can bring up a modal dialog with trusted script:

netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite') ;
  var win = window.open('whatever.html', 'windowName', 'modal=1')
Instead of setting returnValue you need to directly manipulate the
opener window and its properties and call the code you want to run after
the dialog is done

--

        Martin Honnen
        http://javascript.faqts.com/
        http://home.t-online.de/home/martin.honnen/jsgoddies.html


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rudolf Henning  
View profile  
 More options May 28 2001, 7:50 am
Newsgroups: microsoft.public.scripting.jscript
From: "Rudolf Henning" <Rudo...@Hotmail.com>
Date: Mon, 28 May 2001 13:44:46 +0200
Local: Mon, May 28 2001 7:44 am
Subject: Re: pop up dialogue for 'Netscape'
Thanks for the tip,

would it be possible to give a sample of how to manipulate the 'opener'
window properties once the modal window is closed?
Would  it be something in the line of

var win = window.open('whatever.html', 'windowName', 'modal=1');
localvar = win.someproperty; -- where someproperty was defined in
whatever.htm

Rudolf

"Martin Honnen" <Martin.Hon...@t-online.de> wrote in message

news:3B10E7F7.9F66CF86@t-online.de...
> You can bring up a modal dialog with trusted script:

netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite') ;


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »