Questions tagged [childwindow]
235 questions
1
vote
3 answers
Can't reopen child window in the same block even with a setTimeout
Here's a distillation of the problem:
If I open a console and enter the following code as a single block:
var existingWin = window.open('', 'footerContent');
existingWin.close();
var existingWin = window.open('', 'footerContent')
the first…

Pablo Carson
- 45
- 6
1
vote
1 answer
Silverlight ChildWindow does not reposition correctly
I am using the ChildWindow (Silverlight) which also contains some expander controls. In one case, when the expander control expands, the bottom of the child window expands down out the screen on the bottom, but still leaves room on the top.
How…

codeputer
- 1,987
- 3
- 19
- 45
1
vote
0 answers
childwindow focus function does not work in IE
I am trying to open a url of my application in a new tab and when user clicks on same link, it will focus on the open tab. This works fine in chrome. IE its does not work. Does IE require any other piece of code?