<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Search Widget in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3130#M97</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've read the forums here and keep seeing the modified search widget pop up.&amp;nbsp; Don't want you to think I haven't at least tried to research it.&amp;nbsp; I only ask that particular question because I don't know programming or xml or anything else really.&amp;nbsp; It would be awesome to see a UI tool that would build this sort of thing.&amp;nbsp; That being said, I can tackle it and push through and eventually get it.&amp;nbsp; I just don't want to burn up a few days on it if it's not going to be something pretty close to what I'm looking for.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Again, I'm looking for a widget/toolbox/whatever that will allow me to use text to search an address layer I have within flex viewer.&amp;nbsp; For example, if my address&amp;nbsp; is 123 Idiot Drive, I want to be able to type in 123 idiot and get a list of addresses that match that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2012 02:21:55 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2012-03-28T02:21:55Z</dc:date>
    <item>
      <title>Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3129#M96</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After a day of fooling with this Flexviewer, I've finally got it where I can push maps&amp;nbsp; to the public.&amp;nbsp; I'd like to push our address data out and make it searchable for other local entities.&amp;nbsp; I'm having trouble setting up the search widget to make this happen.&amp;nbsp; I add a new search, save it, open the viewer and I can only search by selection, and I'm wanting to search by attribute via text string.&amp;nbsp; Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 21:20:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3129#M96</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-27T21:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3130#M97</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've read the forums here and keep seeing the modified search widget pop up.&amp;nbsp; Don't want you to think I haven't at least tried to research it.&amp;nbsp; I only ask that particular question because I don't know programming or xml or anything else really.&amp;nbsp; It would be awesome to see a UI tool that would build this sort of thing.&amp;nbsp; That being said, I can tackle it and push through and eventually get it.&amp;nbsp; I just don't want to burn up a few days on it if it's not going to be something pretty close to what I'm looking for.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Again, I'm looking for a widget/toolbox/whatever that will allow me to use text to search an address layer I have within flex viewer.&amp;nbsp; For example, if my address&amp;nbsp; is 123 Idiot Drive, I want to be able to type in 123 idiot and get a list of addresses that match that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 02:21:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3130#M97</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-28T02:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3131#M98</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jamie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The esearch widget created by Robert will allow you to do what you want without having to do any coding apart from amending the config file that comes with the widget.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a set of tags called &amp;lt;defaultselectionoption&amp;gt; that allows you set the initial input type for the search to either graphical, textual or spatial, so if you want the user to type his search into a text box set the value of this tag as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;defaultselectionoption&amp;gt;textInput&amp;lt;/defaultselectionoption&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To search for any match in a string set the expression of the search to be something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FieldName like '%' + '[value]' + '%'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the % symbol will then act as a wildcard in your search.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This would satisfy your question but ideally if you are wanting to search for an address you would want to use a geocode service that you can create yourself if you have access to your own ArcGIS Server or utilise one that is provided on line. Have a look at the Locate tool in the flex viewer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 04:45:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3131#M98</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2012-03-28T04:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3132#M99</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anthony,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Buddy!&amp;nbsp; Thanks for your reply.&amp;nbsp;&amp;nbsp; I appreciate it.&amp;nbsp;&amp;nbsp; I think I've got what you're saying.&amp;nbsp;&amp;nbsp; Going to try to tackle it now.&amp;nbsp;&amp;nbsp; I have yet to see it explained like this, so that's good.&amp;nbsp;&amp;nbsp; I think some people take for granted just how little some of us know about Flex.&amp;nbsp;&amp;nbsp; Thanks again for your reply.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 13:16:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3132#M99</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-28T13:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3133#M100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here's something I don't understand.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When you open the builder, There's clearly a Search Widget that as far as I'm concerned, it at least looks like it will do what I need it to do straight out of the box.&amp;nbsp; See the below image.&amp;nbsp;&amp;nbsp; If I point to my Address service, create a Search within that widget...why doesn't that work?&amp;nbsp;&amp;nbsp; Why is it neccessary to add all this other stuff?&amp;nbsp;&amp;nbsp; I'm regretting this move to Flex already despite how awesome it looks.&amp;nbsp; I already miss being able to take a MXD, push it to the server and publish a map to the public.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for whining.&amp;nbsp; It's my own fault, I just don't know Flex.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; [ATTACH=CONFIG]13085[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:02:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3133#M100</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-28T16:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3134#M101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anyone else care to chime in on my last post?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 19:45:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3134#M101</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-29T19:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3135#M102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jamie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; The OOTB Search widget is looking for a mapservice url to a particular layer in a map service and not a Address or geocoder service (this might just been a terminology issue here). Once you enter a url like this "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Louisville/LOJIC_LandRecords_Louisville/MapServer/0" rel="nofollow" target="_blank"&gt;http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Louisville/LOJIC_LandRecords_Louisville/MapServer/0&lt;/A&gt;&lt;SPAN&gt;" are you hitting load so that you can define which fields you will search on?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you seen the Application Builder documentation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Getting_started_with_the_application_builder/01m30000002v000000/" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Getting_started_with_the_application_builder/01m30000002v000000/&lt;/A&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 20:07:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3135#M102</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-03-29T20:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3136#M103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;rscheitlin&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Jamie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;The OOTB Search widget is looking for a mapservice url to a particular layer in a map service and not a Address or geocoder service (this might just been a terminology issue here). Once you enter a url like this "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Louisville/LOJIC_LandRecords_Louisville/MapServer/0" rel="nofollow" target="_blank"&gt;http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Louisville/LOJIC_LandRecords_Louisville/MapServer/0&lt;/A&gt;&lt;SPAN&gt;" are you hitting load so that you can define which fields you will search on?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you seen the Application Builder documentation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Getting_started_with_the_application_builder/01m30000002v000000/"&gt;http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Getting_started_with_the_application_builder/01m30000002v000000/&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;Yes, when I load my own URL which would be &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://" rel="nofollow" target="_blank"&gt;http://&lt;/A&gt;&lt;SPAN&gt;&amp;lt;mysersver&amp;gt;/arcgis/rest/services/rapc/Addresses/Mapserver/0.&amp;nbsp;&amp;nbsp; I hit load, I pick and choose what to base the search off of and save it.&amp;nbsp;&amp;nbsp; After saving the map, I can go see the changes on the live map and see that I've added a Search widget but the widget only has the Search by selecting features.&amp;nbsp;&amp;nbsp; I have no tab to search with text, or by attribute.&amp;nbsp; I've seen the documentation, maybe I've missed something though.&amp;nbsp; I'll look over it again.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 20:19:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3136#M103</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-29T20:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3137#M104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jamie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Did you put anything in the expression textbox when you added your search and if so what? Did you include fields?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 20:37:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3137#M104</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-03-29T20:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3138#M105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, judging how you asked that question, I'm guessing something has to be there.&amp;nbsp; But for the life of me, I couldn't find anything on "Expression" so it's been blank. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 00:52:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3138#M105</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-30T00:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3139#M106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jamie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The Flex Team has had some feedback on this and this being the first couple of releases of the Application Builder, it will get better as more people provide feed back.&amp;nbsp; Right now you would have to go to the actual search widget and look at the help for that particular widget and you will find the expression has this comment:&lt;/SPAN&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Predefined query for the widget used in the attribute (text) search. For example, PARCELID = '[value]' .&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt; So you need to know a little SQL to know what to put in there. If you need specific help just let me know what field in your data you want to search for a value in and if you will want the user to know the exact value to be type or if you want them to just enter "Jones St." and it will find 123 Jones St.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 01:18:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3139#M106</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-03-30T01:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3140#M107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Robert, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me start by saying thanks for your help. I see you all over these forums.&amp;nbsp; You're like a wizard of flexviewer. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, in a perfect world, I would like people to search by a specific address.&amp;nbsp; As in, the municipal attribute and the address attribute.&amp;nbsp; I know that seems redundant but we have some really old data mixed in with our current data that may or may not have the full address in the "address" attribute.&amp;nbsp; However, they will have "municipal" if the address isn't there.&amp;nbsp; There are so many addresses and we only have myself and one other in our department. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hopefully I explained that well enough.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 01:25:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3140#M107</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-30T01:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3141#M108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So the two fields are "address" and "municiple".&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 02:10:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3141#M108</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-30T02:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3142#M109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jamie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; OK the Expression for these fields would look like this then:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Upper(municiple) Like Upper('%[value]%')&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Upper(address) Like Upper('%[value]%')&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;SPAN&gt;You use the Upper() command to remove the possibility of upper vs lower case causing an issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Next you use Like and the % wild card to find values that are like what the user will type.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So single quotes mean you are searching for text and '%[value]%' means that if they type jones than it will find anything with jones as part of it like 123 jones st.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 02:44:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3142#M109</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-03-30T02:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3143#M110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, I'm getting some function now.&amp;nbsp;&amp;nbsp; Do you put the string in exactly as you typed it, with the numbering?&amp;nbsp;&amp;nbsp; I've tried with and without the numbers, with and without spaces and so on but have yet to get both of them to work.&amp;nbsp;&amp;nbsp; I can only get one or the other.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For instacne,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I type:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG&gt;Upper(municiple) Like Upper('%[value]%')&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the Search by Attribute tab and I'm able to search the Municiple field.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And the same for the other, if I type:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG&gt;Upper(address) Like Upper('%[value]%')&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can search the Address field.&amp;nbsp;&amp;nbsp; But no matter how I type both, I keep getting a 400 error.&amp;nbsp; Do the numbers stay or go?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Robert.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 13:30:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3143#M110</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-30T13:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3144#M111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jamie,&amp;nbsp;&amp;nbsp; Yes by default the search widget is not designed for multi field searches.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 16:20:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3144#M111</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2012-03-30T16:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3145#M112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gotcha.&amp;nbsp;&amp;nbsp; And I'm assuming that's the reason, with many others, that you made the Enhanced Search Widget?&amp;nbsp;&amp;nbsp; After going through this and watching the SearchWidget.xml change, I think I understand it way more than before.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again Robert.&amp;nbsp; I appreciate you taking time out to walk me through it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 17:22:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3145#M112</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-03-30T17:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Search Widget</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3146#M113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So, after feeling my way around for a bit...I don't think the Search function is capable of doing exactly what I need it to do without getting outside of what I know and don't know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I went with Anthony's suggestion and created a geocode service for "Locate".&amp;nbsp; For some reason, I'm unable to get it to return any results when I search.&amp;nbsp; Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2012 17:57:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/search-widget/m-p/3146#M113</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-04-03T17:57:39Z</dc:date>
    </item>
  </channel>
</rss>

