<?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 Set a feature layer Editable? (without Editor widget) in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243439#M22527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can define a onClick event handler for the feature layer for edit. Here is the code snippet. editTool is an esri/toolbars/edit type object that should be initialized somewhere.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var clickActions = esri.toolbars.Edit.MOVE | 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.toolbars.Edit.ROTATE |
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.toolbars.Edit.SCALE | 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.toolbars.Edit.EDIT_VERTICES;
featureLayer.on("click", function(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.stopEvent(evt);
&amp;nbsp;&amp;nbsp;&amp;nbsp; editTool.activate(clickActions, evt.graphic);
});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the ESRI editing &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/en/javascript/jssamples/ed_feature_creation.html" rel="nofollow noopener noreferrer" target="_blank"&gt;sample &lt;/A&gt;&lt;SPAN&gt;w/o using Editor widget.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope it helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 12:10:15 GMT</pubDate>
    <dc:creator>JasonZou</dc:creator>
    <dc:date>2021-12-11T12:10:15Z</dc:date>
    <item>
      <title>How to Set a feature layer Editable? (without Editor widget)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243438#M22526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all, I'm new to arcgis JS api, now I want to update the whole records in a specific field of the feature layer, but I don't want to use the Editor Widget, is it possible? How to set the layer editable? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I did some research about using ApplyEdit() method, but still confuse about it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone give me some hints or code examples? Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 15:49:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243438#M22526</guid>
      <dc:creator>yufeizhuang</dc:creator>
      <dc:date>2013-10-21T15:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set a feature layer Editable? (without Editor widget)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243439#M22527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can define a onClick event handler for the feature layer for edit. Here is the code snippet. editTool is an esri/toolbars/edit type object that should be initialized somewhere.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var clickActions = esri.toolbars.Edit.MOVE | 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.toolbars.Edit.ROTATE |
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.toolbars.Edit.SCALE | 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.toolbars.Edit.EDIT_VERTICES;
featureLayer.on("click", function(evt) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.stopEvent(evt);
&amp;nbsp;&amp;nbsp;&amp;nbsp; editTool.activate(clickActions, evt.graphic);
});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the ESRI editing &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/en/javascript/jssamples/ed_feature_creation.html" rel="nofollow noopener noreferrer" target="_blank"&gt;sample &lt;/A&gt;&lt;SPAN&gt;w/o using Editor widget.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope it helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:10:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243439#M22527</guid>
      <dc:creator>JasonZou</dc:creator>
      <dc:date>2021-12-11T12:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set a feature layer Editable? (without Editor widget)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243440#M22528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I hope this is related enough to post it here. Is it possible to use input fields and a Submit button to write to a table? See my screenshot below. Could I use that to let the user submit information to a table in my geodatabase (i.e. add a new row with all the information)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]28494[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 18:05:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243440#M22528</guid>
      <dc:creator>NumaGremling</dc:creator>
      <dc:date>2013-10-21T18:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set a feature layer Editable? (without Editor widget)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243441#M22529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@numa.&amp;nbsp; definitely.&amp;nbsp; you just need to write the logic to map the input textboxes to graphic.attributes prior to calling featureLayer.applyEdits();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;yufei's question is cross posted here&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://gis.stackexchange.com/questions/75012/how-to-set-a-feature-layer-editable-without-editor-widget"&gt;http://gis.stackexchange.com/questions/75012/how-to-set-a-feature-layer-editable-without-editor-widget&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(and here)&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://gis.stackexchange.com/questions/74286/arcgis-javascript-api-update-records-of-a-feature-layer"&gt;http://gis.stackexchange.com/questions/74286/arcgis-javascript-api-update-records-of-a-feature-layer&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 15:02:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-a-feature-layer-editable-without-editor/m-p/243441#M22529</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2013-10-22T15:02:43Z</dc:date>
    </item>
  </channel>
</rss>

