|
Hello, i open a html page with a js popup
<script language="javascript" type="text/javascript"> <!-- function popitup(url) { newwindow=window.open(url,'foobar','height=575,width=950'); if (window.focus) {newwindow.focus()} return false; } // ...
Started by SurfingCat on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I've done this using Smoothbox have better luck using....
So for example, you can popup a window, capture the click event without that window, close the popup window dynamically, and then change the current page location.
|
|
I am opening one Popup window on Button Click in main window, it is for Image Uploading.
when I am uploading Image , i.e. on Upload button click I am closing this Popup window and opening new Popup window.
And Now I want to display the Popup data to Parent...
Started by Pranjali on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can try this, When first popup window is opened(uploading image window) get parent window object for this popup and store in some variable(java script variable ) like this var for the....
This method returns NULL.
|
|
See above...
Started by akosch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Form self.close(); // close the current window
You should be able to call functions in button click of the popup
ClientScript.RegisterStartupScript(typeof(string), "auto_refreshparent.
|
Ask your Facebook Friends
|
I'm using Microsoft AjaxControlToolkit for modal popup window.
And on a modal popup window, when a postback occured, the window was closing. How do i prevent from the closing action of the modal popup?
Started by yapiskan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I guess....
So in that user control i have no modal popup property.
You can call Show() method during postback to prevent the modal popup window from closing that opened in a modal popup and this user control makes postback itself.
|
|
I am trying to open a popup window from another popup window using window.open method but it is simply opening the second popup in the previous popup window.
Code I am currently using:
win= window.open(Window,"child","top=250,left=310,Width=300,Height...
Started by Ankit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you provide the same window name the name of the window is instead of "child" use "_blank" which will always open in a new window.
Make sure you're using a new name for your second new window.
|
|
I want to open a popup window on client PC where I will show records. The user will click on the selected row, and the popup window will disappear, but the parent Form on my page must get filled with the DB values related to the clicked row on the popup...
Started by RPK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also use a modal popup type container even if the client has any sort....
See this.
There is a specific javascript methods to do this.
You should be able to send back some response to your parent window from popup window.
|
|
How can I Open and Close Popup windows without Javascript in ASP.NET?
Started by Sauron on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The best way to display popup window without object allowing....
JavaScript allows you to manipulate the properties of a window' popup (you won't be able to move it for example).
What do you mean "Popup windows".
|
|
I need to open a popup Window to a cross domain content. I should not allow the user either to access or close the parent window, till i am done with Child window.
The main issue with Modal window is that stops any asynchrnous process running on the main...
Answer Snippets (Read the full thread at stackoverflow):
Several widget libraries have support window will communicate to the....
You could use a fake window built via javascript.
How about instead of popping up an actual window, you just open a pseudo-window...that is a div browsers.
|
|
I need to show an "Exit" popup window in MOSS pages. How can I achieve this?
Started by Thomson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Be prepared.
That function can open your exit popup.
; }); }); $(window).unload(function() { onUnloadPopup(); });
function onUnloadPopup() { if (doPopup without clicking either a link or submitting a form.
|
|
Hello. I create a popup using window.open in IE6. Created popup contains a link to other page, which i want to show in the same popup window, but after clicking on the link, the target page is displayed in another brand new popup, so i have 2 popups opened...
Started by diy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Thanks a million.
Target="window_name" as Residuum advised and it works.
|