Re: [mapguide-users] ZoomToView

2012-09-11 Thread veer-singh
Thanks gordon for replying.. i am looking for something else like zoom to specified view port on initial load of web layout , i am able to implement the same but not able to see the selection on map. i am using the method ChangeInitialViewInWebLayout() to append InitialView tag in XML to zoom, my

[mapguide-users] remove feature problem

2012-09-11 Thread jackyfox
how to remove vector feature? body onload the map after that click drop down menu(onchange) remove it. but i cant remove feature any mistake with my code? thanks~~!! sample code as below: *javascript* var map, layer; //var url =

Re: [mapguide-users] remove feature problem

2012-09-11 Thread Zac Spitzer
looks like both your vectorLayer and feature are var scoped within your init function, i.e. not a global variable, so they aren't defined in remove() anyway, it's a javascript problem, what did the problem the browser report? (dev tools, javascript console, firebug etc) On Tue, Sep 11, 2012 at

[mapguide-users] Maestro 4 and 5 shows name for WMS layers and not title

2012-09-11 Thread Hans Milling
Maestro 4 and 5 have the same problem. When adding a WMS layer the list of Feature Classes show the name attribute (if you look inside the xml) for WMS layers and not the title. If the name is missing from a layer the title i shown instead. I think it should be the title that is shown as default

Re: [mapguide-users] Maestro 4 and 5 shows name for WMS layers and not title

2012-09-11 Thread Jackie Ng
If this is a WMS feature source with a configuration document, then you are disregarding how MapGuide/FDO should be interpreting the structure of the feature source, because you're now telling it to interpret the structure as defined in your WMS configuration document. So in this sense, if the

Re: [mapguide-users] Maestro 4 and 5 shows name for WMS layers and not title

2012-09-11 Thread Hans Milling
Hi jackie I am not sure if someone can create duplicates. I just find it difficult to select the right layer in a WMS service using Maestro when all I see is GUID names like 50BFD728-FC15-11E1-A7C1-3BE96088709B and not the title of the layer Orthophoto Spring 2010 Hans... -- View this message

[mapguide-users] password fields is shown as being empty... when it isnt.

2012-09-11 Thread Birgir
Hi, I have a few SQL feature sources, and when I open one of those feature sources the password field is empty. I can see when I test the connection that everything works, so the password is stored but is it possible to add some stars showing that the password field isn't empty? Seeing this field

Re: [mapguide-users] password fields is shown as being empty... when it isnt.

2012-09-11 Thread Birgir
I could create a ticket, if this is something that should/could be done.. -- View this message in context: http://osgeo-org.1560.n6.nabble.com/password-fields-is-shown-as-being-empty-when-it-isnt-tp5001084p5001085.html Sent from the MapGuide Users mailing list archive at Nabble.com.

Re: [mapguide-users] password fields is shown as being empty... when it isnt.

2012-09-11 Thread Jackie Ng
This is a by-design decision made for security purposes in the latest Maestro beta and stable releases. Because if we can populate a password field in the UI, it means the password has been stored plaintext in the Feature Source XML, which is *bad* because under default security settings, users

Re: [mapguide-users] password fields is shown as being empty... when it isnt.

2012-09-11 Thread Birgir
I agree, having the password field in the xml in plaintext would be a very bad solution. It would just be nice to have an indication in the UI that the password field isn't empty. Like many applications that always show 10-12 stars in the password field even though your password only contains 4

Re: [mapguide-users] password fields is shown as being empty... when it isnt.

2012-09-11 Thread Jackie Ng
I like this idea of putting a fake password. I'll see what can be done. - Jackie -- View this message in context: http://osgeo-org.1560.n6.nabble.com/password-fields-is-shown-as-being-empty-when-it-isnt-tp5001084p5001095.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Built In Search Command

2012-09-11 Thread Ryan Northcott
Hello, Just a quick question about a possible bug, I wondered if anyone else has experienced this before.. Using AIMS 2013 actually (We have both MGOS 2.4 and AIMS running just for fun and testing!) Running under Window 2008 Server R2 x64. Running Ajax Viewer.. I Add to my commands a Custom

Re: [mapguide-users] How to get selected feature information in popup window

2012-09-11 Thread elliott17
I am running php 5.4.6 on Server 2008 with MGOS 2.2 and SQL server 2008 r2. I have set up a php page to call an image for the Fusion map tip and keep getting an error (500 internal server error). I created an identical php file on the server and it works. My post message is Test Test!!

Re: [mapguide-users] How to get selected feature information in popup window

2012-09-11 Thread Ryan Northcott
error 500 on SQL Server means the actual DB connection wasn't made (or lost), or timed out so you might be looking more at your connection settings and ensure those channels are valid etc. or perform simple tests on a super small table.. like... select * from Table1 where ID5 just to ensure

Re: [mapguide-users] How to get selected feature information in popup window

2012-09-11 Thread elliott17
I am hitting the server as per the test. It leads me to believe that it is some permissions with php perhaps? -- View this message in context: http://osgeo-org.1560.n6.nabble.com/How-to-get-selected-feature-information-in-popup-window-tp4999139p5001175.html Sent from the MapGuide Users

Re: [mapguide-users] How to get selected feature information in popup window

2012-09-11 Thread Zac Spitzer
php logs it's errors out to the apache error log, or you can enable display_errors, which I would recommend in dev http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors On Wed, Sep 12, 2012 at 6:59 AM, elliott17 ellio...@ae.ca wrote: I am hitting the server as per the