<?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: how to move the navigation buttons in the AttributeInspector? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105031#M9643</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the interest of time and ease of complexity, I instead added a message before the attribute list that reports the number of features selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I modified the editDiv line in function createEditor (line 31 above) to :&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;dojo.byId('editDiv').innerHTML = "&amp;lt;p style='margin-left:5px;margin-top:0px;font-weight:bold;'&amp;gt;&amp;lt;span id='editMessageSpan'&amp;gt;Click on Rezoning Case to Edit&amp;lt;/span&amp;gt;&amp;lt;span id='featureCountSpan'&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id='attributesDiv'&amp;gt;&amp;lt;/div&amp;gt;";&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And added messages in function showAttributes seen below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//Added selectRezoning fn for Editor tab to select the features, 4/4/13 jms.
function selectRezoning() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("--&amp;gt;inside selectRezoning function");
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var selectQuery = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(map, "onClick", function(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectQuery.geometry = evt.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rezFeatLayer.selectFeatures(selectQuery, esri.layers.FeatureLayer.SELECTION_NEW, &lt;STRONG&gt;showAttributes&lt;/STRONG&gt;);
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&amp;nbsp;&amp;nbsp;&amp;nbsp; 
}
//Added showAttributes fn for Editor tab to show the selected the features, 4/4/13 jms.
function &lt;STRONG&gt;showAttributes&lt;/STRONG&gt;(features) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("--&amp;gt;inside showAttributes function");
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("features.length: " + features.length);
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (features.length &amp;gt; 0) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //dojo.byId("attributesDiv").innerHTML = attInspector.domNode;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('editMessageSpan').innerHTML = "";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('featureCountSpan').innerHTML = "Rezoning Cases selected: " + features.length;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('attributesDiv').appendChild(attInspector.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('editMessageSpan').innerHTML = "Click on Rezoning Case to Edit";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('featureCountSpan').innerHTML = "";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('attributesDiv').innerHTML = "";
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While I'd still like to put the default Attribute Inspector navigation &lt;IMG alt="" class="image-1 jive-image" height="26" src="https://community.esri.com/legacyfs/online/72801_pastedImage_6.png" style="width: 136px; height: 25.7476px;" width="136" /&gt;up top, my main purpose is to alert the user that more than one feature got selected.&amp;nbsp; So, displaying the number of selected features will serve my needs -- perhaps it will help others also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 06:24:44 GMT</pubDate>
    <dc:creator>JoanSteinbacher</dc:creator>
    <dc:date>2021-12-11T06:24:44Z</dc:date>
    <item>
      <title>how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105029#M9641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added the AttributeInspector to my web app (based on the Basic Viewer template) and it's working fine.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the list of attributes is long and when you click on overlapping features you have to scroll to the bottom of the list to view the navigation buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to add a "duplicate" set up navigation buttons at the top of the attribute list, or at least move them from the bottom to the top? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Joan&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;//JMS MODIFIED FUNCTION TO USE ATTRIBUTE INSPECTOR WIDGET, 4/4/13.
//Functions to create and destroy the editor. We do this each time the edit button is clicked. 
var rezFeatLayer;
var attInspector;
function createEditor() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("--&amp;gt;inside createEditor function");
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (attInspector) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (editLayers.length &amp;gt; 0) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var templateLayers = dojo.map(editLayers, function (layer) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return layer.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; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rezFeatLayer = templateLayers[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("rezFeatLayer.url: " + rezFeatLayer.url);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rezFeatLayer.mode = esri.layers.FeatureLayer.MODE_SELECTION;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rezFeatLayer.outFields = ["*"];

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Set symbol for highlighting the selected rezoning feature, 6/11/13 jms.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var symbol = new esri.symbol.SimpleFillSymbol(outlinefillSymbol);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rezFeatLayer.setSelectionSymbol(symbol);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var eDiv = dojo.create("div", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id: "editDiv"
&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; dojo.byId('editPanel').appendChild(eDiv);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('editDiv').innerHTML = "&amp;lt;p style='margin-left:5px;'&amp;gt;Select Rezoning Case to Edit&amp;lt;/p&amp;gt;&amp;lt;div id='attributesDiv'&amp;gt;&amp;lt;/div&amp;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; var layerInfos = [{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'featureLayer': rezFeatLayer,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'showAttachments': false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable': true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'showDeleteButton': false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldInfos': rezFieldInfos
&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; attInspector = new esri.dijit.AttributeInspector({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos: layerInfos
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, "div");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //added to save the edits, 3/14/14 jms
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attInspector.on('attribute-change', function(evt){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var feature = evt.feature;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(evt);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feature.attributes[evt.fieldName] = evt.fieldValue;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feature.getLayer().applyEdits(null, [feature], null);
&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; disablePopups();
&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; selectRezoning();
&amp;nbsp;&amp;nbsp;&amp;nbsp; }

}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:24:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105029#M9641</guid>
      <dc:creator>JoanSteinbacher</dc:creator>
      <dc:date>2021-12-11T06:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105030#M9642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about adding some simple HTML buttons in a DIV located above your attribute inspector widget and then calling the inspector's &lt;A href="https://developers.arcgis.com/javascript/jsapi/attributeinspector-amd.html#next"&gt;next&lt;/A&gt; and &lt;A href="https://developers.arcgis.com/javascript/jsapi/attributeinspector-amd.html#previous"&gt;previous&lt;/A&gt; methods in the onClick event for those HTML buttons? Might be the easiest solution instead of trying to hack the widget.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 23:13:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105030#M9642</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2015-03-11T23:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105031#M9643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the interest of time and ease of complexity, I instead added a message before the attribute list that reports the number of features selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I modified the editDiv line in function createEditor (line 31 above) to :&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;dojo.byId('editDiv').innerHTML = "&amp;lt;p style='margin-left:5px;margin-top:0px;font-weight:bold;'&amp;gt;&amp;lt;span id='editMessageSpan'&amp;gt;Click on Rezoning Case to Edit&amp;lt;/span&amp;gt;&amp;lt;span id='featureCountSpan'&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;div id='attributesDiv'&amp;gt;&amp;lt;/div&amp;gt;";&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And added messages in function showAttributes seen below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//Added selectRezoning fn for Editor tab to select the features, 4/4/13 jms.
function selectRezoning() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("--&amp;gt;inside selectRezoning function");
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var selectQuery = new esri.tasks.Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(map, "onClick", function(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectQuery.geometry = evt.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rezFeatLayer.selectFeatures(selectQuery, esri.layers.FeatureLayer.SELECTION_NEW, &lt;STRONG&gt;showAttributes&lt;/STRONG&gt;);
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&amp;nbsp;&amp;nbsp;&amp;nbsp; 
}
//Added showAttributes fn for Editor tab to show the selected the features, 4/4/13 jms.
function &lt;STRONG&gt;showAttributes&lt;/STRONG&gt;(features) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("--&amp;gt;inside showAttributes function");
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("features.length: " + features.length);
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (features.length &amp;gt; 0) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //dojo.byId("attributesDiv").innerHTML = attInspector.domNode;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('editMessageSpan').innerHTML = "";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('featureCountSpan').innerHTML = "Rezoning Cases selected: " + features.length;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('attributesDiv').appendChild(attInspector.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('editMessageSpan').innerHTML = "Click on Rezoning Case to Edit";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('featureCountSpan').innerHTML = "";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.byId('attributesDiv').innerHTML = "";
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While I'd still like to put the default Attribute Inspector navigation &lt;IMG alt="" class="image-1 jive-image" height="26" src="https://community.esri.com/legacyfs/online/72801_pastedImage_6.png" style="width: 136px; height: 25.7476px;" width="136" /&gt;up top, my main purpose is to alert the user that more than one feature got selected.&amp;nbsp; So, displaying the number of selected features will serve my needs -- perhaps it will help others also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:24:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105031#M9643</guid>
      <dc:creator>JoanSteinbacher</dc:creator>
      <dc:date>2021-12-11T06:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105032#M9644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which version of the API is your app using? The attribute inspector should display in the&amp;nbsp; Popup window and if you are working with a version later than 3.4 the navigation should appear in the popup title. &lt;/P&gt;&lt;P&gt; &lt;IMG alt="Screen Shot 2015-03-17 at 1.47.19 PM.png" class="image-1 jive-image" src="/legacyfs/online/75090_Screen Shot 2015-03-17 at 1.47.19 PM.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 20:49:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105032#M9644</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-03-17T20:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105033#M9645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using version 3.9 of the API. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My app is based on the one-pane Basic Viewer template which I downloaded 2 years ago (April 2013).&amp;nbsp; The template has an Editor tab that displays provided you have an editable feature service loaded.&amp;nbsp; So, the attributes aren't loaded into a Pop-up Window. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've done a good amount of customization, so swapping out to a newer template would be a lot of work. Below is what the Editor tab looks like in my app. The navigation buttons are baked in somewhere in the Basic Viewer template or AttributeInspector widget?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Top half:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" height="229" src="https://community.esri.com/legacyfs/online/75091_pastedImage_0.png" style="height: 229px; width: 226.221px;" width="226" /&gt;&lt;/P&gt;&lt;P&gt;Bottom half:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-2 jive-image" height="163" src="https://community.esri.com/legacyfs/online/75185_pastedImage_1.png" style="width: 229px; height: 162.607px;" width="229" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 21:33:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105033#M9645</guid>
      <dc:creator>JoanSteinbacher</dc:creator>
      <dc:date>2015-03-17T21:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105034#M9646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/14092" target="_blank"&gt;Joan Steinbacher&lt;/A&gt;​ you should be able to modify the location using css. Try something like this&lt;/P&gt;&lt;P&gt;&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; .esriAttributeInspector .atiNavButtons{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; position: absolute;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; top:0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; right:0;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; .esriAttributeInspector .atiAttributes{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin-top:25px;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:24:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105034#M9646</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T06:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to move the navigation buttons in the AttributeInspector?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105035#M9647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked great! I adjusted the values for top and right, and got it placed pretty well (see below).&amp;nbsp; Thanks so much -- css is not my strong point so I appreciate the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" height="94" src="https://community.esri.com/legacyfs/online/75552_pastedImage_0.png" style="height: 94px; width: 228.617px;" width="229" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 20:22:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-move-the-navigation-buttons-in-the/m-p/105035#M9647</guid>
      <dc:creator>JoanSteinbacher</dc:creator>
      <dc:date>2015-03-18T20:22:33Z</dc:date>
    </item>
  </channel>
</rss>

