Re: [mapguide-users] Patch : Ajaxviewer Legend wordwrap

2011-05-31 Thread Zac Spitzer
Hi Bruno, can attach the templ changes directly as a subversion diff? it makes review a loit easier to review i.e http://trac.osgeo.org/mapguide/ticket/1568 z On Wed, Jun 1, 2011 at 4:43 PM, Bruno Scott wrote: > Hi all, > I've just submitted a little patch > http://trac.osgeo.org/mapguide/tic

[mapguide-users] Patch : Ajaxviewer Legend wordwrap

2011-05-31 Thread Bruno Scott
Hi all, I've just submitted a little patch http://trac.osgeo.org/mapguide/ticket/1709 http://trac.osgeo.org/mapguide/ticket/1709 Here's some screen shot Actual legend http://osgeo-org.1803224.n2.nabble.com/file/n6425780/legend1.jpg Actual legend smaller http://osgeo-org.1803224.n2.nabble.com/f

Re: [mapguide-users] Re: Query Features does not work

2011-05-31 Thread Zac Spitzer
for the 500 error in firebug, enable you need to enable php errors, look for display_errors=off and change it to on php.ini which will should show what error is being thrown On Wed, Jun 1, 2011 at 7:29 AM, Steve G wrote: > Demanding solutions for your problems doesn't get you too far with this >

[mapguide-users] Re: Query Features does not work

2011-05-31 Thread Steve G
Demanding solutions for your problems doesn't get you too far with this group...have you tried anything else on your own? Like I've tried changing "A" and no results, changing "B" and no results, and changing "C" and still no results. Now that being said, have you changed anything in your filte

[mapguide-users] Re: Query Features does not work

2011-05-31 Thread snrt100
solutions man !! I need your experience -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Query-Features-does-not-work-tp6392727p6424352.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapguide-users m

[mapguide-users] Re: Compatibility issues between Maestro 3.1 and Autodesk Infrastructure Studio

2011-05-31 Thread Jackie Ng
Studio/AIS will always use the latest schema version for all the resources you create. Studio/AIS will also silently upgrades the schema version of all the resources you save to the latest one. AIMS introduced watermarks as a new resource type, which involved Map and Layer Definition schema revis

[mapguide-users] Re: tooltip flyout doesn't appear on mouseover

2011-05-31 Thread frosty1_4me
It appears this might be a css issue with the z-index of the jxButtonContainer class but I haven't been able to get it to work yet. -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/tooltip-flyout-doesn-t-appear-on-mouseover-tp6360709p6423414.html Sent from the MapGuide User

[mapguide-users] Compatibility issues between Maestro 3.1 and Autodesk Infrastructure Studio

2011-05-31 Thread Francesco Sozzi
Hi List, If I create a Map Definition by use of Autodesk Infrastructure Studio, then I can't preview by use of Maestro 3.1. If I try I get a .Net error (System.InvalidCastException). If I try to open a Map Definition or a Layer Definition (created by use of Autodesk Infrastructure Studio ) on

[mapguide-users] Centos Binaries 2.2 missing OGR and GDAL

2011-05-31 Thread GordonL
Hi All, do you know where I can find the dependencies for GDAL and OGR for the CENTOS 5.4 builds of MGOS 2.2? I am getting CLNT_8_UNABLE_TO_LOAD_LIBRARY for those (SHP and SDF are fine) gordon -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Centos-Binaries-2-2-missing-

RE: [mapguide-users] Connection-problem-SQL-Server-2008

2011-05-31 Thread Martin Morrison
What were you doing when the error came up? Custom code? Martin Morrison Application Engineer Engineering Design Systems, Inc. 3780 Peters Creek Rd Ext SW Roanoke, VA 24018 540.345.1410 gis.edsi.com -Original Message- From: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-

[mapguide-users] Re: Retrieve fields names and attributes from Postgres table

2011-05-31 Thread ar_gaeta
Searching randomly on the web I've found this solution (to attach at the previous code, except some of the last lines): //I get the type of the field int typebeta = ((MgDataPropertyDefinition)PropDef).GetDataType(); //I get the length of the field int lengthbeta = ((MgDataPropertyDefinition)PropD

[mapguide-users] Re: Retrieve fields names and attributes from Postgres table

2011-05-31 Thread Jackie Ng
Cast the MgPropertyDefinition to the matching subclass based on the property type value. MgDataPropertyDefinition is one such subclass - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Retrieve-fields-names-and-attributes-from-Postgres-table-tp6418612p6422069.html

[mapguide-users] Re: Retrieve fields names and attributes from Postgres table

2011-05-31 Thread ar_gaeta
Thanks Jackie for your help, I've advanced a lot, but I'm still in trouble. I'm able to get the name of the field/column, but I'm not able to get the property. This is my new code: MgLayer layer = (MgLayer)map.GetLayers().GetItem(layername); MgClassDefinition ClassDef = layer.GetClassDefinition();