Re: [mapguide-users] FW: Translation Maestro mapguide into Polish

2009-11-11 Thread Kenneth Skovhede, GEOGRAF A/S
You need the files to be in UTF-8 format. My favorite editor is Notepad++, and it supports UTF-8 (including conversion). Once the document is correctly UTF-8 formated, it should show up correctly in Maestro. Regards, Kenneth Skovhede, GEOGRAF A/S Łukasz Cudek skrev: Hello, I hav

Re: [mapguide-users] how to check off layer in legend panel automatically

2009-11-11 Thread Kenneth Skovhede, GEOGRAF A/S
There is nothing in MapGuide that supports that right away. You can try to look at the legend.js file and see if there is a place where you can hook into the legend UI and capture the check events. Regards, Kenneth Skovhede, GEOGRAF A/S NISHA P skrev: As you have said, i grouped the lay

Re: [mapguide-users] How to get selected area information in mapguide

2009-11-11 Thread Kenneth Skovhede, GEOGRAF A/S
You need to flush the output, otherwise output may be eaten by the exception. Try turning on error information in your php.ini to get the actual error message. Regards, Kenneth Skovhede, GEOGRAF A/S nekad skrev: Hey guys.. I'm newbie in GIS world I'm using Mapguide and mapguide maestro 1

[mapguide-users] FW: Translation Maestro mapguide into Polish

2009-11-11 Thread Łukasz Cudek
Hello, I have problem with Mapguide Maestro Translation into Polish language. I would like to ad polish signs like ą, ę, ś, ć ect. What I have to do, to remove this problem. Lcudek03 Best regards ___ mapguide-users mailing list ma

Re: [mapguide-users] how to check off layer in legend panel automatically

2009-11-11 Thread NISHA P
As you have said, i grouped the layers..But i did not get what i want..i will explain my question.. I have 3 layers that are invisible at startup...when i click top layer in the legend, that layer is display in the map.. after that when i click 2nd layer in the legend, that layer is displayed

[mapguide-users] How to get selected area information in mapguide

2009-11-11 Thread nekad
Hey guys.. I'm newbie in GIS world I'm using Mapguide and mapguide maestro 1.0.9 What i want is, when user click a selected area, then they can right click and choose the link i provided, let say "ViewData" when user click ViewData, then it will show a popup window which display relevant inform

RE: [mapguide-users] Need help with IF-statment in Tool Tip

2009-11-11 Thread Martin Morrison
Check for null before you run your if statement... From: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Kratz Fredrik - SBF Sent: Wednesday, November 11, 2009 10:35 AM To: MapGuide Users Mail List Subject: SV: [mapguide-users] Need help with IF

SV: [mapguide-users] Need help with IF-statment in Tool Tip

2009-11-11 Thread Kratz Fredrik - SBF
BYGGINV_2 is a string, the name of a document (if existing). Från: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-boun...@lists.osgeo.org] För Martin Morrison Skickat: den 11 november 2009 14:43 Till: MapGuide Users Mail List Ämne: RE: [mapguide-users] Need help with I

RE: [mapguide-users] Need help with IF-statment in Tool Tip

2009-11-11 Thread Martin Morrison
Is your BYGGINV_2 an integer/double/etc field or is it a string? As far as I know length only works on a string. Martin From: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Kratz Sent: Wednesday, November 11, 2009 8:41 AM To: mapguide-users@

SV: [mapguide-users] Need help with IF-statment in Tool Tip

2009-11-11 Thread Kratz
Here is the error message: The expression is invalid Error: Argument types for function 'If' are mismatched. Click here to move the cursor to the error (1)#1 Error: Result types are mismatched: the validation operation expected 'Text' but the expression returned 'Unknown' It's the s

Re: [mapguide-users] how to check off layer in legend panel automatically

2009-11-11 Thread JamesDudden
You need to group the layers that you want to control together in the map layer control. - http://www.software-matters.co.uk Software Matters - http://www.software-matters.co.uk/bespoke-database-design.html Bespoke Database and Software Solutions -- View this message in context: http://n

Re: [mapguide-users] Need help with IF-statment in Tool Tip

2009-11-11 Thread JamesDudden
What does the error say? It normally points to which bit is wrong. Is it the empty string? Try putting a 0 instead like this: If ( LENGTH(BYGGINV_2) > 0, BYGGINV_2 , 0) Kratz wrote: > > Hi! > > I need help writing a correct string with an if-statement. > > Trying to determine whether a

[mapguide-users] IF-statment i MapGuide

2009-11-11 Thread Kratz
Hi! I need help writing a correct string with an if-statement. Trying to determine whether an attribute contains any value(string) or not. Why doesn't this string work? If ( LENGTH(BYGGINV_2) > 0, BYGGINV_2 , ' ' ) Default: If ( [condition], [trueValue], [falseValue] ) -- View this m