<?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: Editor widget in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648663#M60485</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Vikrant and i were able to confirm that as long as the feature layers are instantiated in the order they are displayed in the map, the infoWindow displays the attributes which correspond with the correct layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
//instantiate the featureLayer you would like to draw on top first
pointsOfInterest = new esri.layers.FeatureLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0",{
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp; outFields: ['*']
});
//second
WildfireLine = new esri.layers.FeatureLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/1",{
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp; outFields: ['*']
});
//polygons last
evacuationPerimeter = new esri.layers.FeatureLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/2",{
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp; outFields: ['*']
});

//in the array of featureLayers to add, specify the bottom layer first&amp;nbsp;&amp;nbsp;&amp;nbsp; 
map.addLayers([evacuationPerimeter,WildfireLine,pointsOfInterest]);
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 03:30:09 GMT</pubDate>
    <dc:creator>JohnGravois</dc:creator>
    <dc:date>2021-12-12T03:30:09Z</dc:date>
    <item>
      <title>Editor widget</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648662#M60484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have editing application with about 10 layers to edit. Everything works fine when I have all the layers turned on all the time and template picker shows all the symbols. Problem comes when I try to hide and show the layers and update template picker dynamically as layers get turned off and on from the checkbox. Problem that I am seeing is with overlapping features in this case, sometimes when I click on the point feature at the junction of two line features the infowindow shows the title of point feature but displays the attribute table of line feature. Further, when I click on next feature or previous feature button on infoWindow, this table get fixed automatically. In the same code everything works fine if I don't toggle layers and update template picker. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In second case, when I use attributeInspector digit instead of editor widget, I loose the capability of geometry editing. Is there is a workaround in this case?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 18:13:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648662#M60484</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-09-07T18:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Editor widget</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648663#M60485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Vikrant and i were able to confirm that as long as the feature layers are instantiated in the order they are displayed in the map, the infoWindow displays the attributes which correspond with the correct layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
//instantiate the featureLayer you would like to draw on top first
pointsOfInterest = new esri.layers.FeatureLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0",{
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp; outFields: ['*']
});
//second
WildfireLine = new esri.layers.FeatureLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/1",{
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp; outFields: ['*']
});
//polygons last
evacuationPerimeter = new esri.layers.FeatureLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/2",{
&amp;nbsp; mode: esri.layers.FeatureLayer.MODE_ONDEMAND, //QUERY_SELECTION is working as well
&amp;nbsp; outFields: ['*']
});

//in the array of featureLayers to add, specify the bottom layer first&amp;nbsp;&amp;nbsp;&amp;nbsp; 
map.addLayers([evacuationPerimeter,WildfireLine,pointsOfInterest]);
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:30:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648663#M60485</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2021-12-12T03:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Editor widget</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648664#M60486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That works perfectly!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 15:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget/m-p/648664#M60486</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-09-12T15:31:00Z</dc:date>
    </item>
  </channel>
</rss>

