<?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: Live Layer Widget - only return records in extent in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410668#M9586</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; You did not put the line in the right spot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function queryFeatures():void
{
if (queryLayer)
{
var queryTask:QueryTask = new QueryTask(queryLayer);
queryTask.disableClientCaching = true;
var query:Query = new Query();
query.outFields = queryFields.split(",");
query.returnGeometry = true;
query.where = queryExpr;
query.outSpatialReference = map.spatialReference;
query.geometry = map.extent;
queryTask.execute(query, new AsyncResponder(onResult, onFault));
showMessage(loadingLabel, true);
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 18:39:21 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2021-12-11T18:39:21Z</dc:date>
    <item>
      <title>Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410665#M9583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am wanting to modify the Live Layer Widget so only features (points) in the current map extent are queried and have the results shown on the map.&amp;nbsp; Has anyone done this or does anyone know how to accomplish this?&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;Susan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 20:02:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410665#M9583</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-10T20:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410666#M9584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; In theory (not tested) it should be as simple as adding&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;query.geometry = map.extent;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;to the queryFeatures function in the LiveLayerWidget.mxml&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 20:49:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410666#M9584</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-06-10T20:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410667#M9585</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;Thanks for your suggestion! I tried it, but the live layer widget still returns all records (not just the records for the map extent).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any other ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;private function queryFeatures():void&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (queryLayer)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var queryTask:QueryTask = new QueryTask(queryLayer);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.disableClientCaching = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var query:Query = new Query();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outFields = queryFields.split(",");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.where = queryExpr;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = map.spatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryTask.execute(query, new AsyncResponder(onResult, onFault));&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showMessage(loadingLabel, true);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.geometry = map.extent;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 21:09:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410667#M9585</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-10T21:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410668#M9586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; You did not put the line in the right spot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function queryFeatures():void
{
if (queryLayer)
{
var queryTask:QueryTask = new QueryTask(queryLayer);
queryTask.disableClientCaching = true;
var query:Query = new Query();
query.outFields = queryFields.split(",");
query.returnGeometry = true;
query.where = queryExpr;
query.outSpatialReference = map.spatialReference;
query.geometry = map.extent;
queryTask.execute(query, new AsyncResponder(onResult, onFault));
showMessage(loadingLabel, true);
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:39:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410668#M9586</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T18:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410669#M9587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Robert! My mistake &lt;span class="lia-unicode-emoji" title=":face_with_open_mouth:"&gt;😮&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It does work now - thanks - but only in part.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The initial display is correct (eg: zoom to particular area and only those records are displayed - this is great). However, when I pan the map or zoom to another area, the live layer widget is not updated - it still displays the original records.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 21:43:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410669#M9587</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-10T21:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410670#M9588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Yep, you would have to listen for the map zoomEnd and PanEnd (as Map Extent Change get fired way to often) and have that listener call the queryFeatures function.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jun 2010 00:37:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410670#M9588</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-06-11T00:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410671#M9589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Robert. Do you know how I can do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jun 2010 16:35:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410671#M9589</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-11T16:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410672#M9590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Add these to the init function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&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; map.addEventListener(PanEvent.PAN_END, fireQuery);
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addEventListener(ZoomEvent.ZOOM_END,fireQuery);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then add this new function&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function fireQuery(Evt:Event):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; queryFeatures();
&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:39:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410672#M9590</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T18:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410673#M9591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I added the below code to livelayerwidget.mxml but then my swf file doesn't build. I am likely putting the code in the wrong place.&amp;nbsp; I placed the function fireQuery last.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;private function init():void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicPointSym = new PictureMarkerSymbol(widgetIcon, 25, 25);
&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicsLayer = new GraphicsLayer();
&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicsLayer.symbol = graphicPointSym;
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addLayer(graphicsLayer);
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addEventListener(PanEvent.PAN_END, fireQuery);
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addEventListener(ZoomEvent.ZOOM_END,fireQuery);
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (configXML)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would you be able to provide some direction as to where I should place your code?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Susan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:39:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410673#M9591</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2021-12-11T18:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410674#M9592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Here is a zip that has the complete LiveLayerWidget.mxml. It has been tried and tested.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 18:55:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410674#M9592</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-06-14T18:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410675#M9593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks so much!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the attached message when I try to open your zip file.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 19:10:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410675#M9593</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-14T19:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410676#M9594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Here is the mxml just renamed to dot txt. so when you download it just change the extension to dot mxml and overwrite your current LiveLayerWidget.mxml in your src.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 19:37:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410676#M9594</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-06-14T19:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410677#M9595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Robert&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the mxml file did not get attached.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Susan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 20:27:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410677#M9595</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-14T20:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410678#M9596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Susan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Lets try that again. I had to rename the file ext to lpk to get past the file size limit of a txt file. Still the same thing just rename to mxml when you get it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 20:39:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410678#M9596</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-06-14T20:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Live Layer Widget - only return records in extent</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410679#M9597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks so much Robert!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a big help to me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I guess this forum does not yet allow users to 'star' that a thread has been answered?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Susan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jun 2010 21:25:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/live-layer-widget-only-return-records-in-extent/m-p/410679#M9597</guid>
      <dc:creator>SusanMordy1</dc:creator>
      <dc:date>2010-06-14T21:25:19Z</dc:date>
    </item>
  </channel>
</rss>

