[mapguide-users] Mapguide 2.5.1 fusion search widget not working (Steve G)
Jacco Wanders | TTE Consultants
wanders at engineers.nl
Thu Oct 17 00:01:44 PDT 2013
Thanks Steve for the quick reply
I removed the quotes but still receive a 500 - Internal server error :(
Any other clue?
Tnx. Jacco
-----Oorspronkelijk bericht-----
Van: mapguide-users-bounces at lists.osgeo.org [mailto:mapguide-users-bounces at lists.osgeo.org] Namens mapguide-users-request at lists.osgeo.org
Verzonden: woensdag 16 oktober 2013 21:00
Aan: mapguide-users at lists.osgeo.org
Onderwerp: mapguide-users Digest, Vol 82, Issue 15
Send mapguide-users mailing list submissions to
mapguide-users at lists.osgeo.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.osgeo.org/mailman/listinfo/mapguide-users
or, via email, send a message with subject or body 'help' to
mapguide-users-request at lists.osgeo.org
You can reach the person managing the list at
mapguide-users-owner at lists.osgeo.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of mapguide-users digest..."
Today's Topics:
1. Re: How to stop Task Pane from displaying when swithing
between maps in Fusion (Jackie Ng)
2. Re: Leaflet & MapGuide (Jackie Ng)
3. Re: [MapGuide 2.4]Composite symbole in MapUnits (R?my Gourrat)
4. Mapguide 2.5.1 fusion search widget not working
(Jacco Wanders | TTE Consultants)
5. Can't start mapguide service any more (greg_sk)
6. Re: Mapguide 2.5.1 fusion search widget not working (Steve G)
----------------------------------------------------------------------
Message: 1
Date: Tue, 15 Oct 2013 18:03:44 -0700 (PDT)
From: Jackie Ng <jumpinjackie at gmail.com>
To: mapguide-users at lists.osgeo.org
Subject: Re: [mapguide-users] How to stop Task Pane from displaying
when swithing between maps in Fusion
Message-ID: <1381885424600-5083795.post at n6.nabble.com>
Content-Type: text/plain; charset=us-ascii
In each template there's a showTaskPane() function defined. Something is
calling this function as a result of the map switching. Probably an event
subscription of some sort.
- Jackie
--
View this message in context: http://osgeo-org.1560.x6.nabble.com/How-to-stop-Task-Pane-from-displaying-when-swithing-between-maps-in-Fusion-tp5083745p5083795.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
------------------------------
Message: 2
Date: Tue, 15 Oct 2013 17:36:21 -0700 (PDT)
From: Jackie Ng <jumpinjackie at gmail.com>
To: mapguide-users at lists.osgeo.org
Subject: Re: [mapguide-users] Leaflet & MapGuide
Message-ID: <1381883781957-5083794.post at n6.nabble.com>
Content-Type: text/plain; charset=us-ascii
Nobody I know of has made a MapGuide layer type for leaflet, so no.
- Jackie
--
View this message in context: http://osgeo-org.1560.x6.nabble.com/Leaflet-MapGuide-tp5083729p5083794.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
------------------------------
Message: 3
Date: Tue, 15 Oct 2013 10:01:16 -0700 (PDT)
From: R?my Gourrat <rgourrat at ag-carto.fr>
To: mapguide-users at lists.osgeo.org
Subject: Re: [mapguide-users] [MapGuide 2.4]Composite symbole in
MapUnits
Message-ID:
<238B1E1830D86F46B3F030D491793D6001C3401B at EXC2010.aditu.fr>
Content-Type: text/plain; charset="utf-8"
Thanks Jackie
with the last Maestro version 5.0.1 this ticket is definitively closed.
it's easy to use now all powerfull of mapguide symbolic
R?my
-----
AG-Carto - Bayonne
--
View this message in context: http://osgeo-org.1560.x6.nabble.com/MapGuide-2-4-Composite-symbole-in-MapUnits-tp5078483p5083743.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/mapguide-users/attachments/20131015/a65e9193/attachment-0001.html>
------------------------------
Message: 4
Date: Wed, 16 Oct 2013 12:43:47 +0000
From: Jacco Wanders | TTE Consultants <wanders at engineers.nl>
To: "mapguide-users at lists.osgeo.org" <mapguide-users at lists.osgeo.org>
Subject: [mapguide-users] Mapguide 2.5.1 fusion search widget not
working
Message-ID:
<41E5072787FFF54BB705A90834D189E440A6FB72 at CPI1MS01.hosting.local>
Content-Type: text/plain; charset="windows-1252"
Dear users,
I?m trying/struggling to migrate my mapguide Ajaxviewer project to an fusion environment. Although I made some successes (open tooltips/hyperlinks with the aid of the invoke url widget, maptips), I can?t get the search widget working :(. I have tried several example xml codes from earlier posting.
I made a simple fusion project with two search widgets, which both won?t work:
==> http://176.74.246.104/mapguide/search_fusion.php
I am using:
Windows server 2008
Maestro 5.0.1
MapGuideOpenSource-2.5.1.7768-Final-x64.exe
IIS 7
Below is the script which returns an error after pressing the search/find button (same result for opening the results in a new window or in the taskpane).
500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.
This is the code I used: searching a building number (string field) and display results in taskplane
<?xml version="1.0"?>
<WidgetType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="UiWidgetType">
<Name>Search TaskPane</Name>
<Type>Search</Type>
<Location>Geef gebouwnummer</Location>
<Extension>
<Target>TaskPane</Target>
<Prompt>Search (TaskPane)</Prompt>
<Layer>gebouwen_met_dbase_velden</Layer>
<Filter>"GebNr" LIKE '%$USER_VARIABLE%'</Filter>
<MatchLimit>100</MatchLimit>
<ResultColumns>
<Column>
<Name>Gebouwnummer</Name>
<Property>GebNr</Property>
</Column>
</ResultColumns>
<Title>Search TaskPane</Title>
</Extension>
<ImageUrl>images/icons.png</ImageUrl>
<ImageClass>search</ImageClass>
<Label>Search TaskPane</Label>
<Tooltip>Klik voor zoekopdracht op gebouwnummer</Tooltip>
<StatusText />
<Disabled>false</Disabled>
</WidgetType>
This is the code I used: searching a building number (string field) and display results in new window
<?xml version="1.0"?>
<WidgetType xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="UiWidgetType">
<Name>Search NewWindow</Name>
<Type>Search</Type>
<Location />
<Extension>
<Target />
<Prompt>Search NewWindow</Prompt>
<Layer>gebouwen_met_dbase_velden</Layer>
<Filter>"GebNr" LIKE '%$USER_VARIABLE%'</Filter>
<MatchLimit>100</MatchLimit>
<ResultColumns />
<Title />
</Extension>
<ImageUrl>images/icons.png</ImageUrl>
<ImageClass>search</ImageClass>
<Label>Search NewWindow</Label>
<Tooltip>Klik voor zoekopdracht op gebouwnummer</Tooltip>
<StatusText />
<Disabled>false</Disabled>
</WidgetType>
I hope someone can help me with this problem. If you need more info just let me know.
Thans in advance!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/mapguide-users/attachments/20131016/db6d86df/attachment-0001.html>
------------------------------
Message: 5
Date: Wed, 16 Oct 2013 05:21:55 -0700 (PDT)
From: greg_sk <Gregor.Skrt at elektro-primorska.si>
To: mapguide-users at lists.osgeo.org
Subject: [mapguide-users] Can't start mapguide service any more
Message-ID: <1381926115960-5083899.post at n6.nabble.com>
Content-Type: text/plain; charset=us-ascii
(5412) Failed to retrieve message for "MgConfigurationException"
Failed to retrieve message for "MgConfigurationPropertyValueIsInvalid"
Any clue what could that be ?
last time repair was enough. Now i can't start service at all.
Help !
Tnx. Gregor
--
View this message in context: http://osgeo-org.1560.x6.nabble.com/Can-t-start-mapguide-service-any-more-tp5083899.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
------------------------------
Message: 6
Date: Wed, 16 Oct 2013 09:41:01 -0700 (PDT)
From: Steve G <stevenlgolden at gmail.com>
To: mapguide-users at lists.osgeo.org
Subject: Re: [mapguide-users] Mapguide 2.5.1 fusion search widget not
working
Message-ID: <1381941661171-5083959.post at n6.nabble.com>
Content-Type: text/plain; charset=us-ascii
Remove the quotes:
<Filter>"GebNr" LIKE '%$USER_VARIABLE%'</Filter>
to
<Filter>GebNr LIKE '%$USER_VARIABLE%'</Filter>
Perhaps someone else can chime in, I am not sure what the location tag is
for. I typically leave that blank.
--
View this message in context: http://osgeo-org.1560.x6.nabble.com/Mapguide-2-5-1-fusion-search-widget-not-working-tp5083913p5083959.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
End of mapguide-users Digest, Vol 82, Issue 15
**********************************************
More information about the mapguide-users
mailing list