Link to home
Start Free TrialLog in
Avatar of Dean_Hastings
Dean_Hastings

asked on

Popup Window doesn't work with smartNavigation enabled?

I am using the following Sub to open a popup browser window when btnOpen is clicked.

    Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
        Response.Write("<script>window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');</script>")
    End Sub

This works fine when smartNavigation for the page is disabled. Once smartNavigation is enabled a client side error "invalid pointer" is produced.
Does anyone now what I am doing wrong? Any help is appreciated.

Dean


Avatar of mmarinov
mmarinov

use this
    Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
        Response.Write("<script>window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');</script>")
        Dim scriptString as String = "<script language=JavaScript>"
        scriptString += "window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');</script>"
     
            If(Not IsClientScriptBlockRegistered("clientScript"))
              RegisterClientScriptBlock("clientScript", scriptString)
           End If

    End Sub

B..M
Avatar of Dean_Hastings

ASKER

This works (with Response.write line removed) except that the popup window is tucked behind the parent window. The focus needs to be on the popup window?

Dean.
ASKER CERTIFIED SOLUTION
Avatar of mmarinov
mmarinov

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Tried your suggestion. Focus is still falling on the parent window?
i've tried this  on my computer and it works fine!
Was smartNavigation enabled on your PC?

On my PC, with smartNavigation disabled the focus is on the child page. With smartNavigation enabled the focus is on the parent.

    Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
        Dim scriptString As String = "<script language=JavaScript>"
        scriptString += "var w = window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');w.focus();</script>"

        If (Not IsClientScriptBlockRegistered("clientScript")) Then
            RegisterClientScriptBlock("clientScript", scriptString)
        End If
    End Sub

By the way, thanks for your help on this!!
no, i don't use smartNavigation!
B..M
This is the problem I have, as I am using smartNavigation.
try this
in page_load

btnOpen.Attributes.Add("onclick", "<scrip language=javascript>var w = window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');w.focus();</script>")

and remove the client script from the onclick server event

By the way, please excuse me that i've not read your question carefully

B..M
Got a syntax error when including the <script> tag.

Using the following provided a popup window but the focus was still on the parent.

    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        btnOpen.Attributes.Add("onclick", "var w = window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');w.focus();")
    End Sub

Maybe smartNavigation gives more pain than gain??
try to wrte a client script in your aspx page
<script language="javascript">
 function showMe()
 {
  var w = window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');
  w.focus();
 }
</script>

and modify this
 btnOpen.Attributes.Add("onclick", "var w = window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');w.focus();")

to
 btnOpen.Attributes.Add("onclick", "showMe()")


HTH
B..M
Focus still on Parent window after moving client script into aspx page!
sorry Dean, i'm out of ideas :(
B..M
SmartNavigation doesn't interfere with the focus if you use an html control instead of a server control to open a popup window:

<script>
function OpenWindow()
{
window.open('ClientSidePopupChild.aspx',null,'width=400,height=300');
}
</script>

<a href="javascript:OpenWindow">Click here to open window</a>
Here is a solution for returning the focus to the child even with SmartNavigation enabled.

https://www.experts-exchange.com/questions/20988044/bring-a-window-to-the-front.html

John