Can I call functions in a modeless dialog from the parent
-
Is there anyway to call functions of a modeless dialog (in IE) from the parent window that spawned the dialog? I'd like the user to be able to click on items in the parent window in order to change some data in the dialog upon which they can then perform actions. Also I'm not quite sure what the difference is between opening a new window with window.open vs window.showModelessDialog and when I'd use one over the other. Thanks!
-
Answer:
Sure. Here's 2 pages. I've bolded the working parts. mainPage.html<html><head> <title>I am the main page</title></head><body><h1>I am the main page.</h1><p>I am data.</p><p><button onclick="window.showModelessDialog('dialogPage.html', window);">I am a button</button></p><p id="displayArea">I can be updated.</div></body></html>dialogPage.html<html><head> <title>I am a dialog page</title> <script> window.onload = function(){ document.getElementById('updateButton').onclick = function(){ var openerWindow = window.dialogArguments; var dialogValue = document.getElementById('someText').getAttribute('value'); openerWindow.document.getElementById('displayArea').innerHTML = dialogValue; }; }; </script></head><body><h1>I am a dialog page</h1><p><input type="text" value="Some Text." id="someText"></p><p><button onclick="" id="updateButton">Update</button></p></body></html>
zeoslap at Ask.Metafilter.Com Visit the source
Other answers
I was after the reverse of that - but thanks.
zeoslap
https://gist.github.com/1733294. Closer?
artlung
Related Q & A:
- How can I call Android JavaScript functions in WebView?Best solution by Stack Overflow
- How to call functions inside a function in Python?Best solution by Stack Overflow
- Can I teach English as a volunteer on Koh Samui without taking a TEFL/TESOL course on the island?Best solution by Yahoo! Answers
- How can i see my messages in the dialog box?Best solution by Yahoo! Answers
- When should I call back about a job?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.