[mapguide-users] Can anyone tell me why I can't do a refresh

Ivan Milicevic Ivan.Milicevic at supranet.hr
Fri Dec 14 18:20:29 EST 2007


I think that the error code wolud be "pemission id denied" in that case.
Guy obviously misspeled function name.

parent.mapFrame.Refresh(); 

is what he needs.

-----Original Message-----
From: mapguide-users-bounces at lists.osgeo.org
[mailto:mapguide-users-bounces at lists.osgeo.org] On Behalf Of Gunter
Becker
Sent: Friday, December 14, 2007 11:18 PM
To: mapguide-users at lists.osgeo.org
Subject: Re: [mapguide-users] Can anyone tell me why I can't do a
refresh


Hi,

could it be that your code runs in another domain than the AjaxViewer.
For
example when your code runs on your develop machine and the AjaxViewer
(WebExtensions) runs on another computer on your intranet you will have
a
security issue. You cannot access the methods in another frame via
scripting
when it is located in another domain. I ran into this problem and got
the
same error saying object or method does not exist.

Gunter Becker


gom wrote:
> 
> I have the following code in vb.net.  I get a javascript error when I
try
> to do the refresh.  If I place an html button in the page and execute
> parent.parent.mapFrame.refresh();  It refreshes the map with my group
> turned off.  For some reason, when I execute the sub as shown below,
> parent.parent.mapFrame is not valid but parent.mapFrame is.  Same page
as
> the html button but obviously executed differently.  The debugger
shows
> that parent is viewFrame in this context and parent.mapFrame is valid.

> However, the refresh throws an error saying object or method does not
> exist.  I feel like I'm missing something obvious but cannot discover
what
> it is.  Anyone have any help.
> 
> Thanks in advance.
> 
> Protected Sub RadioButton1_CheckedChanged(ByVal sender As Object,
ByVal e
> As System.EventArgs)
>         InitializeWebTier()
>         Dim mySiteConnection As New MgSiteConnection
>         Dim myUserInfo As New
> MgUserInformation(Session.Item("sessionID").ToString)
>         mySiteConnection.Open(myUserInfo)
>         Dim myFeatureService As MgFeatureService =
> mySiteConnection.CreateService(MgServiceType.FeatureService)
>         Dim myResourceService As MgResourceService =
> mySiteConnection.CreateService(MgServiceType.ResourceService)
>         Dim myMap As New MgMap
>         myMap.Open(myResourceService, m_CurrentMap())
>         Dim myLayerGroup As MgLayerGroup = Nothing
>         Dim myLayerGroups As MgLayerGroupCollection =
myMap.GetLayerGroups
>         Dim i As Integer = 0
>         For Each myLayerGroup In myLayerGroups
>             If myLayerGroup.Name = "Group1" Then
>                 myLayerGroup.SetVisible(False)
>             End If
>         Next
>         myMap.Save()
>         Dim myKey As String = "mapRefresh"
>         If Not Page.ClientScript.IsStartupScriptRegistered(Me.GetType,
> myKey) Then
>             Dim myScript As String = "parent.mapFrame.refresh();"
>             Page.ClientScript.RegisterStartupScript(Me.GetType, myKey,
> myScript, True)
>         End If
> End Sub
> 
> 

-- 
View this message in context:
http://www.nabble.com/Can-anyone-tell-me-why-I-can%27t-do-a-refresh-tp14
339775s16610p14339828.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

_______________________________________________
mapguide-users mailing list
mapguide-users at lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


More information about the mapguide-users mailing list