<?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: Feature Fields not editable in the AGSPopupInfo popup in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24164#M278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Answer(s)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes - it is added to the feature layer before creating the popupInfo.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sean.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Since, it's a new feature, you MUST add it to the feature layer before creating a popupInfo. Are doing that?&lt;BR /&gt;&lt;BR /&gt;[self.featureLayer addGraphic:graphic];&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Dec 2011 16:30:00 GMT</pubDate>
    <dc:creator>SeanTucker1</dc:creator>
    <dc:date>2011-12-15T16:30:00Z</dc:date>
    <item>
      <title>Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24160#M274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Question&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- What Configuration of, Feature Service or code, allows Feature Fields to be editable in&amp;nbsp; AGSPopupInfo popup?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Problem&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Feature Fields do not show up in the AGSPopupInfo popup for editing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Details&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- the self.popupInfo.&lt;/SPAN&gt;&lt;SPAN style="text-decoration:underline;"&gt;fieldInfos&lt;/SPAN&gt;&lt;SPAN&gt; value shows up empty in the following code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-style:italic;"&gt;(void)mapView:(AGSMapView *)mapView didClickCalloutAccessoryButtonForGraphic:(AGSGraphic *)graphic&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //create a popup info object&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.popupInfo = [AGSPopupInfo popupInfoForGraphic:graphic];&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //disable deleting and geometry editing&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.popupInfo.allowDelete = NO;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.popupInfo.allowEditGeometry = NO;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //create the popup container&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopupInfo:self.popupInfo graphic:self.newFeature usingNavigationControllerStack:YES]autorelease];&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.popupVC.delegate = self;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //push the popup controller onto the navigation stack&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.navigationController pushViewController:self.popupVC animated:YES];&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //start editing mode&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.popupVC startEditingCurrentPopup];&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;}&lt;BR /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 13:32:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24160#M274</guid>
      <dc:creator>SeanTucker1</dc:creator>
      <dc:date>2011-12-15T13:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24161#M275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Let me ask few questions to narrow down the issue...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Is this a new graphic created or an existing graphic on the map?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Is this graphic belong to a feature layer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Is this feature layer editable?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. You are creating a popupInfo for 'graphic' in following code line... &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;self.popupInfo = [AGSPopupInfo popupInfoForGraphic:graphic]; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but creating a popupVC for self.newFeature. Why? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopupInfo:self.popupInfo graphic:self.newFeature usingNavigationControllerStack:YES]autorelease];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you missing a code line? self.newFeature = graphic?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 15:30:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24161#M275</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-15T15:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24162#M276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Answers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. New graphic&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Yes the graphic belongs to a feature layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. The Feature Layer is Editable &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Feature Access "Editing" selected in AGS Manager&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Code should read "graphic" .. "graphic" .. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I was trying "self.newFeature" .. "self.newFeature" first .. that did not work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; It reads all "graphic". Either way does not work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sean.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Let me ask few questions to narrow down the issue...&lt;BR /&gt;&lt;BR /&gt;1. Is this a new graphic created or an existing graphic on the map?&lt;BR /&gt;2. Is this graphic belong to a feature layer?&lt;BR /&gt;3. Is this feature layer editable?&lt;BR /&gt;4. You are creating a popupInfo for 'graphic' in following code line... &lt;BR /&gt;self.popupInfo = [AGSPopupInfo popupInfoForGraphic:graphic]; &lt;BR /&gt;&lt;BR /&gt;but creating a popupVC for self.newFeature. Why? &lt;BR /&gt;&lt;BR /&gt;self.popupVC = [[[AGSPopupsContainerViewController alloc]initWithPopupInfo:self.popupInfo graphic:self.newFeature usingNavigationControllerStack:YES]autorelease];&lt;BR /&gt;&lt;BR /&gt;Are you missing a code line? self.newFeature = graphic?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:02:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24162#M276</guid>
      <dc:creator>SeanTucker1</dc:creator>
      <dc:date>2011-12-15T16:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24163#M277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Since, it's a new feature, you MUST add it to the feature layer before creating a popupInfo. Are doing that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[self.featureLayer addGraphic:graphic];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:07:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24163#M277</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-15T16:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24164#M278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Answer(s)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes - it is added to the feature layer before creating the popupInfo.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sean.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Since, it's a new feature, you MUST add it to the feature layer before creating a popupInfo. Are doing that?&lt;BR /&gt;&lt;BR /&gt;[self.featureLayer addGraphic:graphic];&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Nimesh&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:30:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24164#M278</guid>
      <dc:creator>SeanTucker1</dc:creator>
      <dc:date>2011-12-15T16:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24165#M279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If possible, can you please share your sample application so I can test it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:32:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24165#M279</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-15T16:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24166#M280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How do I do that?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:36:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24166#M280</guid>
      <dc:creator>SeanTucker1</dc:creator>
      <dc:date>2011-12-15T16:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24167#M281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can add attachment to the post here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:37:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24167#M281</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-15T16:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24168#M282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Intranet AGS Server.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But if you test code against a working service on your side, let me know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For your code .. Update&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-incidentURL&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-incidentLayer&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:46:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24168#M282</guid>
      <dc:creator>SeanTucker1</dc:creator>
      <dc:date>2011-12-15T16:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24169#M283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;See attached.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will have to update&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- "incidentURL"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:48:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24169#M283</guid>
      <dc:creator>SeanTucker1</dc:creator>
      <dc:date>2011-12-15T16:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Fields not editable in the AGSPopupInfo popup</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24170#M284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just set the outFields of the feature layers before adding them to map and it should work. Like below...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //add feature layers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AGSFeatureLayer *trailsLayer = [AGSFeatureLayer featureServiceLayerWithURL:[NSURL URLWithString:trailsURL] mode:AGSFeatureLayerModeOnDemand];&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trailsLayer.outFields = [NSArray arrayWithObject:@"*"]; //added&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [self.mapView addMapLayer:trailsLayer withName:@"Trails"];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 19:30:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/feature-fields-not-editable-in-the-agspopupinfo/m-p/24170#M284</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2011-12-15T19:30:16Z</dc:date>
    </item>
  </channel>
</rss>

