<?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: Popups Problem in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210894#M6484</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; ...create new features....&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To be able to edit data you need to point &amp;lt;layer&amp;gt; to a layer within a FeatureServer (not a full MapServer service).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;layer label="HomeLand Security Incident Points" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; type="feature" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; visible="true" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; popupconfig="popups/PopUp_IncidentPoints.xml" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/&lt;SPAN style="color:&amp;quot;Red&amp;quot;;"&gt;&lt;STRONG&gt;FeatureServer&lt;/STRONG&gt;/&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;"
/&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the Edit widget documentation for more information - &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Edit_widget/01m30000000v000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Edit_widget/01m30000000v000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 10:23:13 GMT</pubDate>
    <dc:creator>BjornSvensson</dc:creator>
    <dc:date>2021-12-11T10:23:13Z</dc:date>
    <item>
      <title>Popups Problem</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210893#M6483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm trying to create a viewer that will allow users to view attributes and create new features.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My problem is that I can't get &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;anything&lt;/SPAN&gt;&lt;SPAN&gt; past displaying the features to work. Clicking on the dynamic layer does nothing and clicking on the editor widget displays a message that there are no editable layers. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Taking one step at a time, here is my code for the popups:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Config file:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;operationallayers&amp;gt;
&amp;lt;layer label="Bluff Features" type="dynamic" visible="true" alpha="1"
url="http://gisweb:9231/internal/rest/services/Secured/Bluff_Explorer/MapServer"/&amp;gt;
&amp;lt;sublayer id="0" popupconfig="popups/bluff_LowerArmor.xml"/&amp;gt;
&amp;lt;sublayer id="1" popupconfig="popups/bluff_MiddleArmor.xml"/&amp;gt;
&amp;lt;sublayer id="2" popupconfig="popups/bluff_UpperArmor.xml"/&amp;gt;
&amp;lt;sublayer id="3" popupconfig="popups/bluff_Failure.xml"/&amp;gt;
&amp;lt;sublayer id="4" popupconfig="popups/bluff_LargeFailures.xml"/&amp;gt;
&amp;lt;sublayer id="5" popupconfig="popups/bluff_Caves.xml"/&amp;gt;
&amp;lt;/operationallayers&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;popup files (example from one):&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0"?&amp;gt;
&amp;lt;configuration&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Middle Bluff Armor&amp;lt;/title&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&amp;lt;/description&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fields&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="ObjectID"/&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;&amp;nbsp; &amp;lt;field name="LifeCycleStatus"/&amp;gt;
&amp;nbsp; &amp;lt;field name="ArmorType"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="USACE_Reach"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="OwnedBy"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="MaintainedBy"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fields&amp;gt;
&amp;lt;/configuration&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone see a problem with my code? Could it be something to do with the settings of the service? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help or ideas would be greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 21:10:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210893#M6483</guid>
      <dc:creator>KevinHigh</dc:creator>
      <dc:date>2011-09-19T21:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Popups Problem</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210894#M6484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; ...create new features....&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To be able to edit data you need to point &amp;lt;layer&amp;gt; to a layer within a FeatureServer (not a full MapServer service).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example:&lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;layer label="HomeLand Security Incident Points" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; type="feature" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; visible="true" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; popupconfig="popups/PopUp_IncidentPoints.xml" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/&lt;SPAN style="color:&amp;quot;Red&amp;quot;;"&gt;&lt;STRONG&gt;FeatureServer&lt;/STRONG&gt;/&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;"
/&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the Edit widget documentation for more information - &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Edit_widget/01m30000000v000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapps/flexviewer/help/index.html#/Edit_widget/01m30000000v000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:23:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210894#M6484</guid>
      <dc:creator>BjornSvensson</dc:creator>
      <dc:date>2021-12-11T10:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Popups Problem</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210895#M6485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It started "working," but I'm still encountering three problems:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) When I switched the operational layers to features, my symbology/labels disappeared. I had points with address # labels and lines drawing more than one line (dashed line on top of a solid) for symbology. Now I only see the bottom levels - no labels and no dashed lines. I tried switching the image type, but that didn't seem to work. Is this a known issue with the feature type?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) The field areas in the popups are blank. Is it related to this &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/36513-2.4-PopUp-scrollbar-bug"&gt;bug&lt;/A&gt;&lt;SPAN&gt;? However, when I work with the field names in the &amp;lt;description&amp;gt; it works, but I'd rather not do that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) I still can't edit. I can select feature templates, but nothing happens when I try adding lines or points. I can change attributes, but no edits are going through (might be signified by the fact that the Undo button is greyed out...). There will only be one user editing this data (but I've given myself permissions as well in order to test editing), so I don't want to give SOC user permission - or is this something I have to do regardless?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(Sorry for the "mitosis" of questions)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2011 17:54:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210895#M6485</guid>
      <dc:creator>KevinHigh</dc:creator>
      <dc:date>2011-09-20T17:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Popups Problem</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210896#M6486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In case u still havent figured out, I hope this helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure u publish it as a Feature server if u want to use it for the Edit widget&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For the main config file (operational layers)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;layer label="Bluff Features" type="feature" visible="true" alpha="1"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; popupconfig="popups/bluff_LowerArmor.xml"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; url="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://gisweb:9231/internal/rest/services/Secured/Bluff_Explorer/" rel="nofollow" target="_blank"&gt;http://gisweb:9231/internal/rest/services/Secured/Bluff_Explorer/&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color:red;"&gt;FeatureServer/(whaever number)&lt;/SPAN&gt;&lt;SPAN&gt;"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then your pop ups are not displaying because u need to set the visibility to true..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;?xml version="1.0"?&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;configuration&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Middle Bluff Armor&amp;lt;/title&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;description&amp;gt;&amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fields&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="ObjectID" visible="true"/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="LifeCycleStatus" visible="true" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="ArmorType" visible="true"/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="USACE_Reach" visible="true"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="OwnedBy" visible="true"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;field name="MaintainedBy" visible="true"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/fields&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/configuration&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 16:36:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210896#M6486</guid>
      <dc:creator>Prakash_RajaMathalairajan</dc:creator>
      <dc:date>2011-10-12T16:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Popups Problem</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210897#M6487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am also having the same problem in that when I try to add a point nothing happens.&amp;nbsp; I can edit attributes of current points but I am not able to add new points.&amp;nbsp; This is happening for polygon and line features as well.&amp;nbsp; The layers I am trying to edit are published as a FeatureService and are referenced in my config file as .../FeatureServer/(#) and the layer type tag is also "Feature".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ian&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 14:13:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210897#M6487</guid>
      <dc:creator>IanDunn</dc:creator>
      <dc:date>2011-10-21T14:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Popups Problem</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210898#M6488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think the added features are not pointing to the correct database. Please check the path to the database..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I implemented the same thing and it worked.. the process involved..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Creating the database in the server.( ie the fields )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) pulling the database&amp;nbsp; file to the mxd (which will of course have only the fields)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3) publish the mxd as a feature service.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2011 16:44:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/popups-problem/m-p/210898#M6488</guid>
      <dc:creator>Prakash_RajaMathalairajan</dc:creator>
      <dc:date>2011-10-24T16:44:23Z</dc:date>
    </item>
  </channel>
</rss>

