|
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):
Open (URL, windowName[, windowFeatures])
If you do not care what the name of the window is instead of "child" use "_blank... .
If you provide the same window name you'll experience this behavior .
Make sure you're using a new name for your second new window .
|
|
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):
So for example, you can popup a window, capture the click event without that window, close the popup window dynamically, and then....
Have better luck using something that loads the popup in the context of the current page using AJAX.
|
|
I've got a field in a form (custom content type built using CCK) configured as a date and time. I have the Date Popup module installed.
My field shows up as two fields, one for the date and one for the time.
When users click in the date field, the JQuery...
Started by Ambrose on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There isn't a popup for the time selection and there is a good reason difficult and time consuming....
The Date Popup module describes itself as "Enables jquery popup calendars and time entry widgets” is not the same as a popup.
|
Ask your Facebook Friends
|
Please note this is a popup and NOT modal popup. The users do not want a modal popup. Is it a good idea to use an Ajax Popup Control extender in the following circumstances; I want to populate a textbox. When the user clicks on it, he sees a popup window...
Started by arame3333 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://developer.yahoo.com/yui/examples/container/dialog-quickstart.html has a good example of what you are looking for You might want to check out this jquery plugin
http://labs.abeautifulsite.net/projects/js/jquery/alerts/demo/ .
|
|
I've got a popup in my XAML to show some information. When the box pops up, it has no border and appears to blend into the background of the page. It just needs a border, and ideally a drop-shadow behind it to show some sort of layering and focus.
Any...
Started by Shafique on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Lt;Popup PopupAttributes="SetByYou"> <Border BorderAttribute="SetByYou"> <!-- Content.
|
|
See above...
Started by akosch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In button click of the popup
ClientScript.RegisterStartupScript(typeof(string), "auto_refreshparent.
|
|
Can anybody explain me how to add a popup menu at a JtextField? I managed to add a JPopupMenu:
JPopupMenu popup = new JPopupMenu(); popup.add("m"); popup.add("n"); JTextField textField = new JTextField(); textField.add(popup);
But when i roll the mouse...
Started by artaxerxe on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
JTextField textField = new JTextField(); JPopupMenu popup = new JPopupMenu(); textField.add(popup); textField.setComponentPopupMenu....
Let's add the initial popup to the text field.
In the popup that appears over your JTextField.
|
|
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, i....
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'm trying to hide a div if the user clicks anywhere BUT the popup OR it's children. This is the code I have so far:
$("body").click(function(){ var $target = $(event.target); if(!$target.is(".popup") || !$target.is(".popup").children()){ $("body").find...
Started by adamyonk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Brush up on your boolean logic! :)
if(!$target.is(".popup") && !$target.parents().is(".popup(){ $(".popup").fadeOut().removeClass("active"); }); // Prevent events from getting pass .popup $(".popup").click(function(e....
|
|
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 of popup....
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.
|