I'm in the process of updating our Flex 2.5 to 3.4, but after deploying the search widget (out-of-the-box) the graphic results are not showing in the result list or on the map. It will work in 2.5, but not in 3.3 or 3.4, I thought something may have changed. The sample on Esri's site doesn't work either, so is this an issue or the new norm?
The street center line is set to 100% transparency.
Thank you,
Daniel
Attachment 26818
The street center line is set to 100% transparency.
Thank you,
Daniel
Attachment 26818
Code:
<?xml version="1.0" ?>
<configuration>
<initialview>text</initialview>
<layers>
<layer>
<name>Clay County Road</name>
<url>http://server/server/rest/services/Layers/MapServer/102</url>
<expression>upper(FullName) LIKE upper('%[value]%')</expression>
<textsearchlabel>Search by Street Name [ Example: Old Jennings Rd or
Jennings ]</textsearchlabel>
<titlefield>FullName</titlefield>
<linkfield></linkfield>
<fields all="false">
<field name="FullName" alias="Street" />
</fields>
<orderbyfields>FullName ASC</orderbyfields>
</layer>
<layer>
<name>Bradford County Road</name>
<url>http://server/server/rest/services/Layers/MapServer/103</url>
<expression>upper(NAME) LIKE upper('%[value]%')</expression>
<textsearchlabel>Search by Street Name [ Example: State Road 100 or
100 ]
</textsearchlabel>
<titlefield>NAME</titlefield>
<linkfield></linkfield>
<fields all="false">
<field name="NAME" alias="Street" />
</fields>
<orderbyfields>NAME ASC</orderbyfields>
</layer>
</layers>
<zoomscale>10000</zoomscale>
<symbols>
<simplelinesymbol width="4" />
</symbols>
</configuration>
<!-- See Search widget documentation at http://links.esri.com/searchwidget -->