<?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: Question on using the Editing Tools in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149432#M13908</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the response Kelly.&amp;nbsp; I was looking for a little more functionality than what is in that sample.&amp;nbsp; I am looking to add in the editing toolbar as well which I took a screenshot of.&amp;nbsp; I would like to use this toolbar but not the attribute inspector. The code I am using for this is as follows: &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var settings = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map: map,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; templatePicker: templatePicker,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos: [{featureLayer: editableLayer}],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toolbarVisible: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showAttributesOnClick: false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; createOptions: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygonDrawTools:[esri.dijit.editing.Editor.CREATE_TOOL_FREEHAND_POLYGON,esri.dijit.editing.Editor.CREATE_TOOL_AUTOCOMPLETE]
&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; toolbarOptions: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reshapeVisible: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cutVisible: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectVisible: false
&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; var params = {settings: settings};
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var myEditor = new esri.dijit.editing.Editor(params,"editingTools");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myEditor.startup();
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This seems to bring both the edit toolbar and the attribute inspector in, Is there a way to just get the edit toolbar?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the screenshot of the edit toolbar I currently have and need to keep.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]20716[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need me to post more code just let me know I can, There is a lot of code in the app and I did not want to post more than was necessary&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 08:04:42 GMT</pubDate>
    <dc:creator>RobertWinterbottom</dc:creator>
    <dc:date>2021-12-11T08:04:42Z</dc:date>
    <item>
      <title>Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149430#M13906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Everyone, I have a question about the editing tools.&amp;nbsp; In my application I am using the template picker as well as the editing toolbar, in particular the reshape and cut tool. I am wondering what the best way to prevent the attribute inspector from appearing without interfering with any other tools.&amp;nbsp; For example I used the dojo.connect(myEditableLayer,"onClick") and called dojo.stop(evt) to prevent the default behavior from the onClick and stop the attribute inspector from popping up which works, but when I go to use the reshape tool I can't start inside the feature's geometry. What would be the best way to prevent the attribute inspector from being available to my user's?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2013 15:47:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149430#M13906</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2013-01-14T15:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149431#M13907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you provide a code sample that shows the problem? You mentioned using the Template Picker and Draw Toolbar but not the Attribute Inspector. If you aren't using that then the attributes shouldn't appear - here's a sample that shows this: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/#sample/ed_feature_creation"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/#sample/ed_feature_creation&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2013 20:32:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149431#M13907</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-01-14T20:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149432#M13908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the response Kelly.&amp;nbsp; I was looking for a little more functionality than what is in that sample.&amp;nbsp; I am looking to add in the editing toolbar as well which I took a screenshot of.&amp;nbsp; I would like to use this toolbar but not the attribute inspector. The code I am using for this is as follows: &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var settings = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map: map,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; templatePicker: templatePicker,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos: [{featureLayer: editableLayer}],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toolbarVisible: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showAttributesOnClick: false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; createOptions: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygonDrawTools:[esri.dijit.editing.Editor.CREATE_TOOL_FREEHAND_POLYGON,esri.dijit.editing.Editor.CREATE_TOOL_AUTOCOMPLETE]
&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; toolbarOptions: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reshapeVisible: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cutVisible: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; selectVisible: false
&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; var params = {settings: settings};
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var myEditor = new esri.dijit.editing.Editor(params,"editingTools");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myEditor.startup();
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This seems to bring both the edit toolbar and the attribute inspector in, Is there a way to just get the edit toolbar?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the screenshot of the edit toolbar I currently have and need to keep.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]20716[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need me to post more code just let me know I can, There is a lot of code in the app and I did not want to post more than was necessary&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:04:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149432#M13908</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2021-12-11T08:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149433#M13909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok now I see. You are using the Editor widget which includes all the editing capabilities (template picker, toolbar, attribute inspector, attachments etc). One approach to this would be to build up the sample I sent earlier to add the additional capabilities. To do so you'd have to add a toolbar with buttons and associate them with the editor toolbar. See the sample here for details: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/#sample/toolbar_edit" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/#sample/toolbar_edit&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option that feels like a bit of a hack - but seems to work would be to hide the info window using css. To do this add the following to your app: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .infowindow{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visibility: hidden !important;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:04:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149433#M13909</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T08:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149434#M13910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks again Kelly.&amp;nbsp; I will try that tomorrow morning to see if I can get it working.&amp;nbsp; However I did not see any options on the sample page or the api reference page about adding in the Reshape Tool or the Cut tool, do you know of any way I could maybe add those to the toolbar in the same way as the other options in that sample?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2013 00:53:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149434#M13910</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2013-01-15T00:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149435#M13911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Update on this.&amp;nbsp; Thanks for pointing out that sample Kelly, it looks like I can get most of the behavior I will be needing from doing that with the exception of the reshape and cut tool.&amp;nbsp; If there is a way I can add those to the toolbar that would be great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On a separate note, I have noticed from doing some more testing that I am getting an error with the editor widget and was noticing the same error in one of the samples located here: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/samples/ed_simpletoolbar/index.html"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/samples/ed_simpletoolbar/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The error is&amp;nbsp; - TypeError: 'undefined' is not an object (evaluating 'this._activeTool._enabled') and points to Editor-all.js line 19&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This happens when I select a template from the template picker, then select the drawing tool I wish to use via this select widget (see attached photo).&amp;nbsp; Then if I move the mouse to the map I lose the tooltip and cannot draw. Upon selecting the template picker again I see this error and cannot draw any items on the map.&amp;nbsp; Everything works fine until I try to change the drawing tool. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]20731[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2013 13:13:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149435#M13911</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2013-01-15T13:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149436#M13912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The geometry service has cut and reshape operations so you can build a tool that calls the geometry service methods to perform the actions. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/#geometryservice"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/#geometryservice&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the details about the error you are getting with the Editor. I'll take a look this morning and see if I can reproduce. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kelly&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2013 14:49:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149436#M13912</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-01-15T14:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149437#M13913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for pointing that out Kelly, I will give it a shot.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2013 15:04:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149437#M13913</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2013-01-15T15:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149438#M13914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Kelly, I was curious if you were able to recreate that bug I had mentioned or if it seems like I may be doing something wrong on my end? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I had a meeting with my project manager the other day and it seems they really like the editor widget and would prefer I use that than building my own reshape and cut tool and connecting them to the geometry service. I was able to build a workaround for now by hiding the select box that was causing the error and placing a few buttons(one for each option that was in my select) in the toolbar that when clicked, will force the drawToolbar to activate a different drawing tool. This works for now but seems like kind of a hack.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2013 14:47:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149438#M13914</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2013-01-16T14:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149439#M13915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes I was able to reproduce the problem and it is a bug in the JSAPI that we'll get fixed for the next release. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kelly&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hey Kelly, I was curious if you were able to recreate that bug I had mentioned or if it seems like I may be doing something wrong on my end? &lt;BR /&gt; I had a meeting with my project manager the other day and it seems they really like the editor widget and would prefer I use that than building my own reshape and cut tool and connecting them to the geometry service. I was able to build a workaround for now by hiding the select box that was causing the error and placing a few buttons(one for each option that was in my select) in the toolbar that when clicked, will force the drawToolbar to activate a different drawing tool. This works for now but seems like kind of a hack.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2013 14:49:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149439#M13915</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-01-16T14:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149440#M13916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok. Thanks for the help, I really appreciate it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes I was able to reproduce the problem and it is a bug in the JSAPI that we'll get fixed for the next release. &lt;BR /&gt;&lt;BR /&gt;Kelly&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2013 18:44:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149440#M13916</guid>
      <dc:creator>RobertWinterbottom</dc:creator>
      <dc:date>2013-01-16T18:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Question on using the Editing Tools</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149441#M13917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am encountering this same problem. Is there any sort of interim fix before the next release of the api? A code segment of how to hide the tool button and add the individual tool buttons would be of help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes I was able to reproduce the problem and it is a bug in the JSAPI that we'll get fixed for the next release. &lt;BR /&gt;&lt;BR /&gt;Kelly&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2013 18:13:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/question-on-using-the-editing-tools/m-p/149441#M13917</guid>
      <dc:creator>StevenSlemons</dc:creator>
      <dc:date>2013-02-21T18:13:47Z</dc:date>
    </item>
  </channel>
</rss>

