<?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: Map &amp; query results are not show up when using browsers like IE &amp; Firefox in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11209#M1085</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True, but not the way he was using it. Only Chrome did not have issue with his use of it. I will edit my response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Dec 2014 18:47:10 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2014-12-19T18:47:10Z</dc:date>
    <item>
      <title>Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11203#M1079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hell all,&lt;/P&gt;&lt;P&gt;I can't figure out why the map &amp;amp; query results won't display when using Firefix and IE.&amp;nbsp; Only able to use it in Chrome?&lt;/P&gt;&lt;P&gt;Does anyone got this problem too?&lt;/P&gt;&lt;P&gt;Here is my jsfiddle:&lt;/P&gt;&lt;P&gt;&lt;A href="http://jsfiddle.net/MayJeff00/tcowyk89/1/" title="http://jsfiddle.net/MayJeff00/tcowyk89/1/"&gt;Edit fiddle - JSFiddle&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 17:37:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11203#M1079</guid>
      <dc:creator>MayJeff</dc:creator>
      <dc:date>2014-12-19T17:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11204#M1080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Other browsers do not support the Array.prototype.sort (the way that you are trying to use it).&lt;/P&gt;&lt;P&gt;Here is the workaround for your code.&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1419011376578847 jive_text_macro" jivemacro_uid="_1419011376578847"&gt;&lt;P&gt;var sortedFeatures = results.features;//.sort('PARCELID');&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 17:50:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11204#M1080</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-12-19T17:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11205#M1081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;look at using the Query orderByFields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/query-amd.html#orderbyfields" title="https://developers.arcgis.com/javascript/jsapi/query-amd.html#orderbyfields"&gt;Query | API Reference | ArcGIS API for JavaScript&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 17:51:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11205#M1081</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-12-19T17:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11206#M1082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're not using sort correctly, needs to be something like:&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; var sortedFeatures = results.features.sort(function(a,b) {
&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; return a.attributes.PARCELID.localeCompare(b.attributes.PARCELID); 
&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 15:54:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11206#M1082</guid>
      <dc:creator>HeikoHeijenga</dc:creator>
      <dc:date>2021-12-12T15:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11207#M1083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; This link may help as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort" title="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort"&gt;Array.prototype.sort() - JavaScript | MDN&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 18:13:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11207#M1083</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-12-19T18:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11208#M1084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, all browsers support Array.sort... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 18:17:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11208#M1084</guid>
      <dc:creator>HeikoHeijenga</dc:creator>
      <dc:date>2014-12-19T18:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11209#M1085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True, but not the way he was using it. Only Chrome did not have issue with his use of it. I will edit my response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 18:47:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11209#M1085</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-12-19T18:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Map &amp; query results are not show up when using browsers like IE &amp; Firefox</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11210#M1086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for taking your times to look into it.&amp;nbsp; I updated the sorting part based on Heiko.&amp;nbsp; &lt;A href="http://jsfiddle.net/tcowyk89/2/" title="http://jsfiddle.net/tcowyk89/2/"&gt;Edit fiddle - JSFiddle&lt;/A&gt;&amp;nbsp; and I also do another way for sorting based on Robert help link mentioned on his last posted &lt;A href="http://jsfiddle.net/MayJeff00/tcowyk89/3/" title="http://jsfiddle.net/MayJeff00/tcowyk89/3/"&gt;Edit fiddle - JSFiddle&lt;/A&gt; &lt;/P&gt;&lt;P&gt;When I use notepadd ++ to create a file and run it on IE -&amp;nbsp; always got Access Denied - See my attachment file.&lt;/P&gt;&lt;P&gt;Both links above using JSFiddle can see both map and query results when using IE but not firefox.&lt;/P&gt;&lt;P&gt;Using firefox so far nothing show up at all.&amp;nbsp; Got any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="IEerror.gif" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/42261_IEerror.gif" style="width: 620px; height: 330px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Dec 2014 00:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-query-results-are-not-show-up-when-using/m-p/11210#M1086</guid>
      <dc:creator>MayJeff</dc:creator>
      <dc:date>2014-12-20T00:05:17Z</dc:date>
    </item>
  </channel>
</rss>

