<?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 Are there any tutorials that will demonstrate how to create a form for editing? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621617#M58031</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create a mobile application for field use, but the pop-up editor is too small. It's discussed here in this blog: &lt;A href="http://blogs.esri.com/esri/arcgis/2014/07/08/editing-via-pop-ups-got-you-down/" title="http://blogs.esri.com/esri/arcgis/2014/07/08/editing-via-pop-ups-got-you-down/"&gt;Editing pop-UPs got you DOWN? | ArcGIS Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any tutorials that cover how to do this in the Esri JS API?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Mar 2015 21:32:31 GMT</pubDate>
    <dc:creator>ChrisSergent</dc:creator>
    <dc:date>2015-03-17T21:32:31Z</dc:date>
    <item>
      <title>Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621617#M58031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create a mobile application for field use, but the pop-up editor is too small. It's discussed here in this blog: &lt;A href="http://blogs.esri.com/esri/arcgis/2014/07/08/editing-via-pop-ups-got-you-down/" title="http://blogs.esri.com/esri/arcgis/2014/07/08/editing-via-pop-ups-got-you-down/"&gt;Editing pop-UPs got you DOWN? | ArcGIS Blog&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any tutorials that cover how to do this in the Esri JS API?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 21:32:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621617#M58031</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-03-17T21:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621618#M58032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is some good info on &lt;A href="http://diveintohtml5.info/forms.html"&gt;divintohtml5&lt;/A&gt; about creating forms that make it easy for users on mobile devices to input info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically you just want to create a form and then when users enter the info and click some form of submit button you use the Feature Layer applyEdits method to write the attribute info to the service.&amp;nbsp; I think I sent you the code to the Graffiti app? If so that app uses a custom form and applyEdits to add a feature so its one example of how to accomplish the task. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 21:54:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621618#M58032</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-03-17T21:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621619#M58033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You did send me that code, but I just didn't know how to integrate the code into my app. I am just trying to understand how to make the edits apply to the feature service and I am not getting it. The editing widget does it all for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 22:01:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621619#M58033</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-03-17T22:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621620#M58034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if you aren't using the editor you need to handle the updates. You can do so using FeatureLayer.applyEdits. &lt;A href="http://developers.arcgis.com/javascript/samples/ed_feature_creation/" rel="nofollow noopener noreferrer" target="_blank"&gt; The Edit without Editor &lt;/A&gt;sample in the help shows how this works. Basically you create a new graphic using the input geometry&amp;nbsp; and assign the attribute (which you get from the form). &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var attr = {
&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; "email": dom.byId("report_email").value || 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; "description": dom.byId("report_desc").value || 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; "date": dom.byId("report_date").value || 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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.setAttributes(attr);


&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; graphic.setAttributes(attr);&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: monospace; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&amp;nbsp; use applyEdits to add the feature. &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;featureLayer.applyEdits([graphic], null, null.......&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:30:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621620#M58034</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-12T02:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621621#M58035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might also want to take a look at this sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/jssamples/mobile_citizenrequest.html" title="https://developers.arcgis.com/javascript/jssamples/mobile_citizenrequest.html"&gt;Attribute editing - mobile | ArcGIS API for JavaScript&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 22:12:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621621#M58035</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-03-17T22:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621622#M58036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like the answer before this one best, but I need to learn bootstrap. Needing to learn what causes the form to pop-up. But I'm going to try and modify this one for my project. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 14:45:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621622#M58036</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-03-18T14:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621623#M58037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just one question on this one. How do I determine the feature that was clicked on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 14:45:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621623#M58037</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-03-18T14:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621624#M58038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll want to listen for the feature layer's click event. Here's an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14266961743066042" data-renderedposition="71_8_912_16" jivemacro_uid="_14266961743066042"&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&amp;nbsp; layer&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;on&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"click"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;function&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;evt&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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; event&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;stop&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;evt&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;if&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;evt&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;ctrlKey &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;===&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;true&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;||&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; evt&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;metaKey &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;===&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;true&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="com" style="color: #999988;"&gt;//delete feature if ctrl key is depressed&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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;&amp;nbsp; layer&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;applyEdits&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;null&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;,&lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;null&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;,[&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;evt&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;graphic&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;]);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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;&amp;nbsp; currentLayer &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;this&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;;&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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;&amp;nbsp; editToolbar&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;deactivate&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;();&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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;&amp;nbsp; editingEnabled&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;false&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;;&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&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; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;}&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;});&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;});&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:29:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621624#M58038</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-03-18T16:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621625#M58039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;A href="https://community.esri.com/migrated-users/2525"&gt;Kelly Hutchins&lt;/A&gt;​ I've got a lot to learn in editing. I hope it gets easier with practice. But this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:36:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621625#M58039</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-03-18T16:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621626#M58040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We use a couple html drop downs and table forms to create table records for our inspection, like Kelly mentioned, then just stuff it in a TitlePane. Works pretty well so far.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 18:57:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621626#M58040</guid>
      <dc:creator>williamcarr</dc:creator>
      <dc:date>2015-03-18T18:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Are there any tutorials that will demonstrate how to create a form for editing?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621627#M58041</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/2525"&gt;Kelly Hutchins&lt;/A&gt;​ I had one more question on this. I think it relates, so I didn't create a new thread. I want to populate the form when the user clicks on a point for editing. What would I need to write to get the information for the individual fields, like if a field was named: PipeId&amp;nbsp; and the form was named pipeId?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 16:29:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/are-there-any-tutorials-that-will-demonstrate-how/m-p/621627#M58041</guid>
      <dc:creator>ChrisSergent</dc:creator>
      <dc:date>2015-04-24T16:29:59Z</dc:date>
    </item>
  </channel>
</rss>

