Casey,
OK, finally I am able to see your configuration issue. I am expecting a zoomscale tag in your relate tag. As indicated in red below and you need to remove or change the symbology tag you have (which is now for a Polygon and your layer is a PolyLine), Your FacilityID field is a numeric field so your expression should not wrap the [value] in single quotes (which is the way you do for strings). The same goes for your Diameter field expression. It is normally little attention to detail things like this that trip people up. In the Next version I will do some better error traping for things like the missing zoomscale tag.<layer> <token /> <definitionexpression /> <enableexport>true</enableexport> <name>Sanitary Main</name> <url>http://GIS01.lebanon.local:6080/arcgis/rest/services/OperationalLayers/Utilities/MapServer/3</url> <expressions> <expression alias="Facility ID" textsearchlabel="Search Specific Main:" isvaluerequired="false"> <values> <value prompt="Example: 1032" isvaluerequired="false">FACILITYID = [value]</value> </values> </expression> <expression alias="Attributes" textsearchlabel="Search Mains:" isvaluerequired="false"> <values> <value prompt="Type:" isvaluerequired="false" uniquevalsfromfield="TYPE" autosubmit="false">TYPE = '[value]'</value> <value prompt="Diameter:" isvaluerequired="false" uniquevalsfromfield="DIAMETER" autosubmit="false" operator="AND">DIAMETER = [value]</value> <value prompt="Material:" isvaluerequired="false" uniquevalsfromfield="MATERIAL" autosubmit="false" operator="AND">MATERIAL = '[value]'</value> </values> </expression> </expressions> <graphicalsearchlabel>Use one of the graphical search tools to select Main</graphicalsearchlabel> <spatialsearchlayer>true</spatialsearchlayer> <titlefield>Sanitary Main</titlefield> <fields all="false"> <field name="FACILITYID" gridfield="true" /> <field name="TYPE" gridfield="true" /> <field name="DIAMETER" gridfield="true" /> <field name="MATERIAL" gridfield="true" /> <field name="YEARBUILT" gridfield="true" /> <field name="EDITDATE" gridfield="true" /> <field name="INSPECTIONDATE" gridfield="true" /> </fields> <links /> <zoomscale usegeometry="true" zoompercent="2" /> <autoopendatagrid>false</autoopendatagrid> <queryattachments>false</queryattachments> <relates> <relate id="0" label="Asbuilts" enableprintgrid="false"> <fields all="false"> <field name="ASBUILTID" /> <field name="FILEPATH" hyperlinkgridfield="true" hyperlinkaliastext="View Asbuilt" linkprefix="http://GIS01/Asbuilts/" linksuffix=".pdf" /> </fields> <zoomscale usegeometry="true" zoompercent="1.6" /> </relate> </relates> <symbology> <simplefillsymbol color="0xff0000" alpha="0.5"> <outline color="0xff0000" alpha="0.8" width="2"/> </simplefillsymbol> </symbology> </layer>
<symbology> <simplelinesymbol color="0x00ff00" alpha="0.8" width="2" /> </symbology>
Marie,
The fact that your data has 2" the double quote is throwing excel for a loop... Normally the " is used as a text qualifier and the fact that your data looks like "2"","26007887", etc, etc it is an issue for excel. In excel if you set the Text Qualifier to none than you will see how it is suppose to work minus the double qoutes wrapping each column.