<?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: Autocomplete search box in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487082#M13691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Phillip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The thing about not seeing what you are typeing into the searchbox, is a problem i don't understand, have you tried my testsite ?? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll look at the thing about ignore Null values and a clearbutton - thanks for the ideas....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Xander - yes the widget is affected by the max. number in the service - and i can see that i have only told about this on the arcgis.com site, not in the info.txt file in the zip-file, sorry - i'll correct this soon - thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Jan 2011 04:56:32 GMT</pubDate>
    <dc:creator>LemvigKommune</dc:creator>
    <dc:date>2011-01-14T04:56:32Z</dc:date>
    <item>
      <title>Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487075#M13684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've just uploaded my AutocompleteSearch widget to arcgis.com - but&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like it to iterate through multible url's and add the features in each url to the dropdownbox, but i can't get it to do just that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If anybody has any idea as to how i could solve this, i'll be happy to hear about it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads Gren&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 12:13:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487075#M13684</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-01-12T12:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487076#M13685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a widget with some functionality that can load services via a config.xml that might help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=ca9e4de998714d07a6bdc59ededa0efc" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.arcgis.com/home/item.html?id=ca9e4de998714d07a6bdc59ededa0efc&lt;/A&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
/**
 * Takes URL for a ArcGIS Server Rest directory and
 * will attempt to extract the SiteMap.
 * @param directory
 */
protected function loadServices(servername:String):void
{
 var service:HTTPService = new HTTPService();
 var sitemap:String = "/ArcGIS/rest/services/?f=sitemap";
 var url:String = "http://" + servername + sitemap;
 service.url = url;
 service.resultFormat = "e4x";
 var token:AsyncToken = service.send();
 token.addResponder(new AsyncResponder(onServiceResults_handler, onFault_handler));
}

/**
 * Handles the results of accessing the SiteMap.
 * @param event
 * @param token
 */
protected function onServiceResults_handler(event:ResultEvent, token:Object = null):void
{
 var xml:XML = event.result as XML;
 var xmlColl:XMLListCollection = new XMLListCollection(xml.children());
 var list:Array = [];
 var qn:QName = new QName(sitemapNS, "loc");
 var sxml:XML;
 for each (sxml in xmlColl)
 {
&amp;nbsp; var url:String = sxml[qn].text();
&amp;nbsp; var tmp:Array = url.split("/");
&amp;nbsp; var i:uint = tmp.length;
&amp;nbsp; if (tmp[i-1] == "MapServer")
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; var item:ServiceItem = new ServiceItem();
&amp;nbsp;&amp;nbsp; item.serverType = tmp[i-1];
&amp;nbsp;&amp;nbsp; item.name = tmp[i-2];
&amp;nbsp;&amp;nbsp; item.url = url;
&amp;nbsp;&amp;nbsp; list.push(item);
&amp;nbsp;&amp;nbsp; findServiceDetails(item);
&amp;nbsp; }
 }
 list.sortOn("name");
 dataList = new ArrayList(list);
 vUrls = new Vector.&amp;lt;String&amp;gt;(list.length);
 servicesList.dataProvider = dataList;
}

/**
 * Parses &amp;lt;code&amp;gt;ServiceItem&amp;lt;/code&amp;gt; object url to find layer details
 * in service REST.
 * @param item
 */
protected function findServiceDetails(item:ServiceItem):void
{
 var jsonurl:String = "?f=json&amp;amp;pretty=false";
 var url:String = item.url + jsonurl;
 
 var srv:HTTPService = new HTTPService();
 srv.url = url;
 srv.resultFormat = "text";
 var token:AsyncToken = srv.send();
 token.addResponder(new mx.rpc.Responder(onJSONResult_handler, onFault_handler));
 
 function onJSONResult_handler(event:ResultEvent):void {
&amp;nbsp; var data:String = event.result.toString();
&amp;nbsp; // this regex replace can be used to make parsing the JSON faster.
&amp;nbsp; // It removes spaces, but it will mess up service description.
&amp;nbsp; //data = data.replace( /\s/g, '' );
&amp;nbsp; var details:Object = JSON.decode(data);
&amp;nbsp; item.description = details["serviceDescription"];
&amp;nbsp; if (!details["singleFusedMapCache"])
&amp;nbsp;&amp;nbsp; item.type = DYNAMIC;
&amp;nbsp; else
&amp;nbsp;&amp;nbsp; item.type = TILED;
 }
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This will get you as far as loading the individual URL's for each service in a server, like "sampleserver1.arcgisonline.com", then you can create a layers using the URL and pull out the Layer info via layerInfos. I have a function for another tool that does just that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
/**
 * Will find all the items that make up a given map service layer.
 * @param lyr
 */
protected function findLayerDetails(lyr:Layer):void
{
 if (layers)
&amp;nbsp; layers.removeAll();
 
 layers = new ArrayList();
 var layerInfos:Array;
 layerIDSet = null;
 layerIDSet = {};
 if (lyr is ArcGISDynamicMapServiceLayer)
&amp;nbsp; layerInfos = ArcGISDynamicMapServiceLayer(lyr).layerInfos;
 else if (lyr is ArcGISTiledMapServiceLayer)
&amp;nbsp; layerInfos = ArcGISTiledMapServiceLayer(lyr).layerInfos;
 else if (lyr is FeatureLayer) {
&amp;nbsp; var lyrId:int = FeatureLayer(lyr).layerDetails.id;
&amp;nbsp; var lyrName:String = FeatureLayer(lyr).layerDetails.name;
&amp;nbsp; layerIDSet[lyrName] = lyrId;
&amp;nbsp; layers.addItem(lyrName);
 }
 
 if (layerInfos)
 {
&amp;nbsp; var info:LayerInfo;
&amp;nbsp; for each (info in layerInfos)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; layerIDSet[info.name] = info.id;
&amp;nbsp;&amp;nbsp; layers.addItem(info.name);
&amp;nbsp; }
 }
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 21:27:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487076#M13685</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2021-12-11T21:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487077#M13686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Rene&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But there must be a simpler way beside using httpservices.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The thing i'm looking for is a way to iterate over a actionscript query, with different layerURL's and get it into an array.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But if nothing else comes up, i'll look at your code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 14:00:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487077#M13686</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-01-12T14:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487078#M13687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you set up your xml config file to let you know the Layer type, "dynamic", "tiled", etc, you can iterate through your list, create layers, then iterate through the layers to get the layerinfos.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 14:04:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487078#M13687</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2011-01-12T14:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487079#M13688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi again&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can almost see that, but i don't want more layers, all I want is the data from a single row, and the graphics so that i can use it as a searchbox&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;we are using it for our adresssPoints, but I would like to get the parcelID and the graphics from another services as well and put that into the dropdownlist, so that when my coworkers are starting to type, it sorts out the list for them, and when they hit enter it will pan and zoom to their selection.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 14:18:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487079#M13688</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-01-12T14:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487080#M13689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nice. Works very well.&amp;nbsp; Very configurable as well!&amp;nbsp; To improve the widget it would be nice to have it ignore null values in a table....and also to be able to see the letters you type into the search box.&amp;nbsp; With those two additions it would be absolutely perfect for me!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Again - good job!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- and perhaps also a clear graphics button...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2011 15:14:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487080#M13689</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2011-01-13T15:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487081#M13690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is this widget affected by the maximum number of records returned by server (500)? Im not seeing all of my results in the drop down.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2011 17:45:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487081#M13690</guid>
      <dc:creator>xanderm</dc:creator>
      <dc:date>2011-01-13T17:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487082#M13691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Phillip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The thing about not seeing what you are typeing into the searchbox, is a problem i don't understand, have you tried my testsite ?? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll look at the thing about ignore Null values and a clearbutton - thanks for the ideas....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Xander - yes the widget is affected by the max. number in the service - and i can see that i have only told about this on the arcgis.com site, not in the info.txt file in the zip-file, sorry - i'll correct this soon - thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jan 2011 04:56:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487082#M13691</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-01-14T04:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487083#M13692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Philip&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;with the help from Robert S, the widget now iterater over multiple layers, and exclude null-values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and the clear-button is added...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;see &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=4a61e3e4b0c94300a3a361855d9a344f"&gt;arcgis.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Mads&lt;BR /&gt;&lt;BR /&gt;Nice. Works very well.&amp;nbsp; Very configurable as well!&amp;nbsp; To improve the widget it would be nice to have it ignore null values in a table....and also to be able to see the letters you type into the search box.&amp;nbsp; With those two additions it would be absolutely perfect for me!&lt;BR /&gt;&lt;BR /&gt;Again - good job!&lt;BR /&gt;&lt;BR /&gt;- and perhaps also a clear graphics button...&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jan 2011 18:47:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487083#M13692</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-01-17T18:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487084#M13693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Phillip&lt;BR /&gt;The thing about not seeing what you are typeing into the searchbox, is a problem i don't understand, have you tried my testsite ?? &lt;BR /&gt;&lt;BR /&gt;I'll look at the thing about ignore Null values and a clearbutton - thanks for the ideas....&lt;BR /&gt;&lt;BR /&gt;Hi Xander - yes the widget is affected by the max. number in the service - and i can see that i have only told about this on the arcgis.com site, not in the info.txt file in the zip-file, sorry - i'll correct this soon - thanks.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think that problem is because the backgroundcolor of searchbox is the same than text color (using for example Black Gold style colors, see attached image). Is it feasible that the searchbox background color uses the background color defined in style tag?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Concerning to the problem with the widget is affected by the maximum number of records returned by server, is there any workaround to solve this? (because my addressesPoints are thousands points).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Pedro.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 08:45:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487084#M13693</guid>
      <dc:creator>PedroGarcia</dc:creator>
      <dc:date>2011-02-03T08:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487085#M13694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I noticed the live version of this widget is different from the one that is downloaded.&amp;nbsp; Mainly the downloaded version does not display the characters that are inputted into the search box - whereas the live widget does.&amp;nbsp; I think maybe the download link is still referencing version 1.1.......&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Great tool!&amp;nbsp; Will be very useful.&amp;nbsp; Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2011 15:35:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487085#M13694</guid>
      <dc:creator>philippschnetzer</dc:creator>
      <dc:date>2011-04-14T15:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487086#M13695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tool is not working in new 2.4 version &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; Widget window does not opening.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Server 9.3.1&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 08:58:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487086#M13695</guid>
      <dc:creator>VladislavMasatin</dc:creator>
      <dc:date>2011-08-15T08:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487087#M13696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The Autocomplete search box, is not convertet to 2.4 yet, and will not be done in near future, i'll might do another search box for 2.4, but as my workload looks at the moment, it will not be soon. Sorry...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 09:02:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487087#M13696</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-08-15T09:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487088#M13697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Bad &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe some one else converts. Will wait.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 09:21:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487088#M13697</guid>
      <dc:creator>VladislavMasatin</dc:creator>
      <dc:date>2011-08-15T09:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487089#M13698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all, I've just uploaded a version for the Flexviewer 2.4&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=4a61e3e4b0c94300a3a361855d9a344f"&gt;AutocompleteSearch&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 18:35:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487089#M13698</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-09-19T18:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487090#M13699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Any chance you post v1.2 here?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2011 16:17:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487090#M13699</guid>
      <dc:creator>xanderm</dc:creator>
      <dc:date>2011-09-22T16:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487091#M13700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Vladislav Masatin, I've tried to use a service that has little over 13.000 points in it, and it takes about 4-5 sec. for it to generate the list.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the widget set to open at startup, but nothing happens if I starts typing before it's done, and I can't get the browser to crash.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, but I can't reproduce your error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2011 19:09:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487091#M13700</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-09-27T19:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487092#M13701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mads,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've configured AutoComplete 2.4 to my flex viewer according to readme file. I don't know what I am doing wrong, but I don't see the dropdown. I can type the address, but the tool doesn't respond. I used uncompiled version. I attached the screen image. Could you please help?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 18:57:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487092#M13701</guid>
      <dc:creator>HeenaLee</dc:creator>
      <dc:date>2011-09-28T18:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487093#M13702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry that I have not answered long time. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What server version are you using? I have 9.3.2. can it be a reason?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2011 06:15:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487093#M13702</guid>
      <dc:creator>VladislavMasatin</dc:creator>
      <dc:date>2011-10-19T06:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Autocomplete search box</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487094#M13703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi again&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using ArcGIS server 10, that might be the problem, but I don't know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mads&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2011 06:32:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/autocomplete-search-box/m-p/487094#M13703</guid>
      <dc:creator>LemvigKommune</dc:creator>
      <dc:date>2011-10-19T06:32:06Z</dc:date>
    </item>
  </channel>
</rss>

