<?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: Symbols not Rendering if more than 100 records in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120356#M11234</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response. I have been doing more research and had an initial contact with ESRI about the matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The url is extremely long for the 100+ records. Under that amount and the query uses 'Get'. Over the amount and it uses 'Post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I go about using a proxy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Apr 2016 18:01:44 GMT</pubDate>
    <dc:creator>TiffanySelvidge1</dc:creator>
    <dc:date>2016-04-22T18:01:44Z</dc:date>
    <item>
      <title>Symbols not Rendering if more than 100 records</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120354#M11232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a link in the infowindow that displays all sale records in a particular area. The link work fine if there are less than 100 records. If there are more than 100 records then nothing happens (user-view) when the link is clicked. In the code, clicking the link activates the function and the code goes through the steps until it reaches the esri layers feature layer function. Once at that step, the program just stops. No error is thrown; it just stops.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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; featureLayer10.selectFeatures(query, esri.layers.FeatureLayer.SELECTION_NEW, function (features) { //Selects and zooms to all sales and the subject account without changing the subject color
&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; //zoom to the selected feature
&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; var stateExtent = esri.graphicsExtent(features);

&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.setExtent(stateExtent, true);
&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; salesextent = stateExtent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked the config and common files and cannot find anything limiting the number of symbols to 100.&lt;/P&gt;&lt;P&gt;Is this a renderer limitation?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:00:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120354#M11232</guid>
      <dc:creator>TiffanySelvidge1</dc:creator>
      <dc:date>2021-12-11T07:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Symbols not Rendering if more than 100 records</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120355#M11233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tiffany,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; What does your query.where look like for 100+ records? Sounds like you could be reaching the url string limit and you need to use a proxy to get past it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 16:07:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120355#M11233</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-22T16:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Symbols not Rendering if more than 100 records</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120356#M11234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response. I have been doing more research and had an initial contact with ESRI about the matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The url is extremely long for the 100+ records. Under that amount and the query uses 'Get'. Over the amount and it uses 'Post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I go about using a proxy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 18:01:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120356#M11234</guid>
      <dc:creator>TiffanySelvidge1</dc:creator>
      <dc:date>2016-04-22T18:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Symbols not Rendering if more than 100 records</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120357#M11235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tiffany,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Download and deploy the proxy from &lt;A href="https://github.com/Esri/resource-proxy" title="https://github.com/Esri/resource-proxy"&gt;GitHub - Esri/resource-proxy: Proxy files for DotNet, Java and PHP.&lt;/A&gt;&amp;nbsp; and deploy it to your web server using the instructions in the README.md&amp;nbsp; and or this blog&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.esri.com/esri/supportcenter/2015/04/07/setting-up-a-proxy/" title="https://blogs.esri.com/esri/supportcenter/2015/04/07/setting-up-a-proxy/"&gt;Setting up a Proxy | Support Services Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also instructions in that blog on code that needs to be added to your JS code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 18:58:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120357#M11235</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-22T18:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Symbols not Rendering if more than 100 records</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120358#M11236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have finished talking to ESRI about this problem and apparently it is a known bug for 10.2. For now I have set up statements in my code that limit the array size to 150. I adjusted the sql stored procedure to retrieve records ordered by date so the most recent ones will remain in the array. If the limitation becomes too much of a problem before the server is upgraded, then I will set up the proxy you have recommended.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2016 17:53:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/symbols-not-rendering-if-more-than-100-records/m-p/120358#M11236</guid>
      <dc:creator>TiffanySelvidge1</dc:creator>
      <dc:date>2016-04-26T17:53:49Z</dc:date>
    </item>
  </channel>
</rss>

