Re: How to open two windows in response to one click
It does make sense - we have popups on our site now. The content of these new windows is meant to be printed out, and I was wanting to use the browser's built-in print functionality for that.
View ArticleRe: How to open two windows in response to one click
if you want to by pass the popup blocker. you might want to consider using CSS and JS to show/hide an element. The element you need to style it such that it looks like a dialog or a popup window....
View ArticleRe: How to open two windows in response to one click
Definitely turning off the popup blocker fixes the issue. I guess that may have to be the solution for the client. If they have popup blocker turned on, then they will have to allow popups for our...
View ArticleRe: How to open two windows in response to one click
dolot 1) Why does it block the popup for the second window and not the first?That is a bit strange, as I would think that it should be blocking both (or neither). dolot 2) Why does it only do this on...
View ArticleRe: How to open two windows in response to one click
OK. This is getting stranger...The jsbin example you give works just as expected.Using the code above that you gave should work, but I only get the first tab, not the second.Well, if I go back to the...
View ArticleRe: How to open two windows in response to one click
After looking at it, the previous suggestion (without the explicit measurements) should work :window.open(this.graphicAnalysisResource,'_blank'); window.open(this.graphicAnalysisResource2,'_blank');You...
View ArticleRe: How to open two windows in response to one click
OK. I tried your solution Rion and it did work - after I allowed popups and the page refreshed and such. I'm not sure what the customer will think about that. Probably no biggie but you never...
View ArticleRe: How to open two windows in response to one click
Try explicitly defining with parameters along with the updated targets. This can generally cause the windows to be "popped out" as opposed to opening in tabs and hopefully should cause them to not...
View ArticleRe: How to open two windows in response to one click
try below steps, it could be some settings that you need to set in Internet Options. And also show different style of opening a page in a new...
View ArticleRe: How to open two windows in response to one click
This problem occurs in both IE and Chrome - hadn't tried firefox.
View ArticleRe: How to open two windows in response to one click
Wish I could report that fixed it, but alas - no.
View ArticleRe: How to open two windows in response to one click
Try indicating that you want each of them opened in new windows by defining a title for each such as '_blank' :window.open(this.graphicAnalysisResource,'_blank');and...
View ArticleHow to open two windows in response to one click
I have the following snippet of code that runs in response to a click event: //show the siteplan form this.graphicAnalysisResource = this.analysisResource + "?projectId=" + this.projectId +...
View Article