<?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-All Build up in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17687#M1644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share the code where selection is happening?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jul 2015 17:26:50 GMT</pubDate>
    <dc:creator>thejuskambi</dc:creator>
    <dc:date>2015-07-20T17:26:50Z</dc:date>
    <item>
      <title>Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17686#M1643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using the selection tool on the toolbar of the editor widget to select multiple points.&amp;nbsp; When I click the attribute tool on the toolbar, I only get one feature in the AttributeInspector infowindow.&amp;nbsp;&amp;nbsp; I do not get the navigation buttons on the AttributeInspector.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapMain.on("layers-add-result", initEditing);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function initEditing (evt) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; layers = arrayUtils.map(evt.layers, function(result) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return {featureLayer: result.layer};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; createEditor();&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function createEditor() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (myEditor) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var settings = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map: mapMain,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableUndoRedo: true,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometryService: new GeometryService("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https://ags2.scgov.net/arcgis/rest/services/Utilities/Geometry/GeometryServer" rel="nofollow" target="_blank"&gt;https://ags2.scgov.net/arcgis/rest/services/Utilities/Geometry/GeometryServer&lt;/A&gt;&lt;SPAN&gt;"),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos: layers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toolbarVisible: true,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toolbarOptions: {&lt;/P&gt;&lt;P&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; reshapeVisible: false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; };&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var params = {settings: settings};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myEditor = new esri.dijit.editing.Editor(params,domConstruct.create("div"));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; domConstruct.place(myEditor.domNode, "editorDiv");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myEditor.startup();&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 16:49:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17686#M1643</guid>
      <dc:creator>MichaelStranovsky</dc:creator>
      <dc:date>2015-07-20T16:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17687#M1644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share the code where selection is happening?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 17:26:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17687#M1644</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-07-20T17:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17688#M1645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael, Thejus - I am experiencing the same problem.&amp;nbsp; If you go to the jsapi sample at:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/jssamples/ed_simpletoolbar.html" title="https://developers.arcgis.com/javascript/jssamples/ed_simpletoolbar.html"&gt;Editor widget with simple toolbar | ArcGIS API for JavaScript&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and perform a selection on more than one feature using the edit toolbar selection tool&amp;gt;open attribute inspector, only the first-selected features' attributes are populated in the attribute inspector with &lt;SPAN style="text-decoration: underline;"&gt;no paging controls&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the attribute inspector need to be instancicated seperatly from the editor widget so that paging controls will display?&amp;nbsp; If so, do we have to calll in attribute inspector events to move to a next feature?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is appreciated-&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 17:51:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17688#M1645</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2015-07-20T17:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17689#M1646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not explicitly applying a selection through the code.&amp;nbsp;&amp;nbsp; I am using the sample from Editor Widget with Simple Toolbar.&amp;nbsp;&amp;nbsp; The selection is occurring on the widget toolbar's selection tool.&amp;nbsp;&amp;nbsp; If you run the sample on ESRI Javascript API, you will see that theirs is not working also.&amp;nbsp; So if you use the select tool from the editor widget toolbar to select multple features and the click the attribute tool, you only get the first selected feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 18:18:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17689#M1646</guid>
      <dc:creator>MichaelStranovsky</dc:creator>
      <dc:date>2015-07-20T18:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17690#M1647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont know why, but for some strange reason the Editor does not show the next previous button if the map.infoWindow is set to default i.e. Popup. If you change it to use InforWindow or InfoWindowLite, it starts showing the button.&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; var infoWindow = new InfoWindow({}, domConstruct.create("div"));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoWindow.startup();
&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 = new Map("map", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; basemap: "satellite",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; center: [-96.541, 38.351],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; zoom: 14,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; slider: false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoWindow: infoWindow
&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;If the way infowindow show is not a problem than the above code will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:42:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17690#M1647</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2021-12-10T20:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17691#M1648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Way to go thejsu, that's it - thanks!&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 17:23:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17691#M1648</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2015-07-21T17:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17692#M1649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the reply...this did work but we discovered that it rendered the search widget useless.&amp;nbsp;&amp;nbsp; We will have to dig a little deeper to find out why the seach stop working after adding your code above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 19:51:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17692#M1649</guid>
      <dc:creator>MichaelStranovsky</dc:creator>
      <dc:date>2015-07-21T19:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17693#M1650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to create a jsFiddler or somthing. so that I can take a look at it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know if there is a bug reported for this issue(next &amp;amp; previous missing)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 18:39:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17693#M1650</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-07-22T18:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17694#M1651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thejus - &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/115438"&gt;@michael&lt;/a&gt; Stranovsky and I work together - hence my reply to you... yes I want to get our project up in a fiddle and will let you know when - thanks.&amp;nbsp; One thing we did try and thus far has produced mixed results it adding a click event to our edit layer that calls a tolerance function to set up an extent, like what I did here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;function pointToExtent (mapMain, point, toleranceInPixel) {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pixelWidth = mapMain.extent.getWidth() / mapMain.width;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var toleranceInMapCoords = toleranceInPixel * pixelWidth;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return new Extent(point.x - toleranceInMapCoords,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; point.y - toleranceInMapCoords,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; point.x + toleranceInMapCoords,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; point.y + toleranceInMapCoords,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapMain.spatialReference);&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; lyrAddresses.on('click', function (event) { //mapMain&amp;nbsp; 
&amp;nbsp; console.log("im here");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var query = new Query();&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.geometry = pointToExtent(mapMain, event.mapPoint, 10);&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var deferred = lyrAddresses.selectFeatures(query, //featurelayer&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; FeatureLayer.SELECTION_NEW);&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; //mapMain.infoWindow.setFeatures([deferred]);&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; //mapMain.infoWindow.show(event.mapPoint);&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;The thinking being that an extent has to be accessed in order for the popup to know that there is more than one feature -- but&amp;nbsp; I don't know.&amp;nbsp; As soon as I interact with the search dijit and try to go back to the edit tools no paging occurs-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:42:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17694#M1651</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2021-12-10T20:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17695#M1652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I shall try to explain my finding, I dont understand their reason for doing this way. If someone from ESRI can explain this then great. Here I go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ability to hide or show pagination in Editor's AttributeInspector is controlled by &lt;STRONG&gt;hideNavButtons &lt;/STRONG&gt;parameter which can be passed only through constructor. Bydefault this value is linked to &lt;STRONG&gt;Editor._usePopup&lt;/STRONG&gt; property. which again is set if &lt;STRONG&gt;map.infoWindow&lt;/STRONG&gt; has "_&lt;EM&gt;&lt;STRONG&gt;setPagerCallbacks&lt;/STRONG&gt;&lt;/EM&gt;" method implemented or not. This method is only part of &lt;EM&gt;Popup&lt;/EM&gt; class.&amp;nbsp; Hence, I suggested to use something other then Popup which is default for map.infoWindow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding, Search failing, there seems to be some relationship between map.infoWindow and Search dijit. probably you could set &lt;A href="https://developers.arcgis.com/javascript/jsapi/search-amd.html#enableinfowindow"&gt;enableInfoWindow &lt;/A&gt;to false, if you dont need this. you need to figure it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another way is to create your own AttributeInspector and pass it to Editor as settings.attributeInspector, and you can control what to show or hide. Again this has not been documented clearly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I was helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thejus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 18:45:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17695#M1652</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-07-24T18:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Editor-All Build up</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17696#M1653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Thejus, yes helpful for sure.&amp;nbsp; Yes, we've been sort of trial and error on this for some time. Anytime we set an info or popup window as part of the map or search constructer it completely hoses the attribute inspector and it's functionality.&amp;nbsp; You are likely correct in we will have create a specific AI.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 18:54:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-all-build-up/m-p/17696#M1653</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2015-07-24T18:54:47Z</dc:date>
    </item>
  </channel>
</rss>

