<?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: Editor widget does not work (it appears but not functional), pleasehelp! in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079138#M73881</link>
    <description>&lt;P&gt;Really, Big Thank you&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jul 2021 08:57:32 GMT</pubDate>
    <dc:creator>AbirELTAIEF1</dc:creator>
    <dc:date>2021-07-15T08:57:32Z</dc:date>
    <item>
      <title>Editor widget does not work (it appears but not functional), pleasehelp!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079110#M73878</link>
      <description>&lt;P&gt;Please, could you guide me , I have a problem with the widget Editor (arcgis-JS-API),&lt;BR /&gt;I need to loop through all my featurelayers (in my map), to apply the Editor widget "esri/widgets/Editor", to the layers in my map (uploaded from Arcgis server online), because I need to add (edit, delete, update capibilities to my featurelayers in the same document) : could you please guide me, here you find my code, I have this error message, when I run it&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The error message: (you find the screenshots, below, after the code)&lt;/STRONG&gt;&lt;BR /&gt;Uncaught (in promise) TypeError: Cannot read property 'uid' of undefined&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at w.get (Editor.js:2569)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at Object.a.runTracked ((index):148)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at f.k.getComputed ((index):143)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at p.e.get ((index):136)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at c ((index):126)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at Object.f [as valueOf] ((index):126)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at (index):163&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at Object.a.runTracked ((index):148)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at c.u [as _notify] ((index):196)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at c.g.onCommitted ((index):198)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And here the code: &lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&amp;lt;html lang="en"&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;    &amp;lt;meta charset="UTF-8"&amp;gt;&lt;BR /&gt;    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;&lt;BR /&gt;    &amp;lt;meta http-equiv="X-UA-Compatible" content="ie=edge"&amp;gt;&lt;BR /&gt;    &amp;lt;link rel="stylesheet" href="&lt;A href="https://js.arcgis.com/4.20/esri/themes/light/main.css" target="_blank" rel="noopener noreferrer"&gt;https://js.arcgis.com/4.20/esri/themes/light/main.css&lt;/A&gt;"&amp;gt;&lt;BR /&gt;    &amp;lt;script src="&lt;A href="https://js.arcgis.com/4.20" target="_blank" rel="noopener noreferrer"&gt;https://js.arcgis.com/4.20&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;    &amp;lt;title&amp;gt;Edting by ArcGIS Server Online&amp;lt;/title&amp;gt;&lt;BR /&gt;    &amp;lt;style&amp;gt;&lt;BR /&gt;        html,&lt;BR /&gt;        body,&lt;BR /&gt;        #viewview {&lt;BR /&gt;            padding: 0px;&lt;BR /&gt;            margin: 0px;&lt;BR /&gt;            height: 100%;&lt;BR /&gt;            width: 100%;&lt;BR /&gt;        }        #formDiv {&lt;BR /&gt;            width: 100%;&lt;BR /&gt;        }        .esri-item-list__scroller {&lt;BR /&gt;            overflow-y: visible;&lt;BR /&gt;        }        .list-heading {&lt;BR /&gt;            font-weight: normal;&lt;BR /&gt;            margin-top: 20px;&lt;BR /&gt;            margin-bottom: 10px;&lt;BR /&gt;            color: #323232;&lt;BR /&gt;        }        .or-wrap {&lt;BR /&gt;            background-color:white;&lt;BR /&gt;            height: 1px;&lt;BR /&gt;            margin: 2em 0;&lt;BR /&gt;            overflow: visible;&lt;BR /&gt;        }        .or-text {&lt;BR /&gt;            background:white;&lt;BR /&gt;            line-height: 0;&lt;BR /&gt;            padding: 0 1em;&lt;BR /&gt;            position: relative;&lt;BR /&gt;            bottom: 0.75em;&lt;BR /&gt;        }    &amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;    &amp;lt;script&amp;gt;&lt;BR /&gt;        let map;&lt;BR /&gt;        let view;&lt;BR /&gt;        let pointLayer, lineLayer, polygonLayer; &lt;BR /&gt;        require(["esri/Map",&lt;BR /&gt;                "esri/views/MapView",&lt;BR /&gt;                "esri/layers/FeatureLayer",&lt;BR /&gt;                "esri/widgets/Editor",&lt;BR /&gt;                "dojo/domReady!"&lt;BR /&gt;            ],&lt;BR /&gt;            function(Map,&lt;BR /&gt;                MapView,&lt;BR /&gt;                FeatureLayer,&lt;BR /&gt;                Editor            ) {                // wfirehydrant&lt;BR /&gt;                let wfirehydrantSymbol = {&lt;BR /&gt;                    type: "simple",&lt;BR /&gt;                    symbol: {&lt;BR /&gt;                        type: "picture-marker",&lt;BR /&gt;                        url: "&lt;A href="https://img.icons8.com/doodle/48/000000/fire-hydrant--v1.png" target="_blank" rel="noopener noreferrer"&gt;https://img.icons8.com/doodle/48/000000/fire-hydrant--v1.png&lt;/A&gt;",&lt;BR /&gt;                        width: "20px",&lt;BR /&gt;                        height: "20px"&lt;BR /&gt;                    }&lt;BR /&gt;                }                let wfirehydrantPopup = {&lt;BR /&gt;                        "title": "wfirehydrant",&lt;BR /&gt;                        "content": "&amp;lt;br&amp;gt;FID:&amp;lt;/br&amp;gt; {FID} &amp;lt;br&amp;gt;z:&amp;lt;/br&amp;gt; {z}"&lt;BR /&gt;                    }                // distrution pipe&lt;BR /&gt;                let wdistributionpipeSymbol = {&lt;BR /&gt;                    type: "simple",&lt;BR /&gt;                    symbol: {&lt;BR /&gt;                        type: "simple-line",&lt;BR /&gt;                        cap: "round",&lt;BR /&gt;                        color: [0,172,230],&lt;BR /&gt;                        width: "5px",&lt;BR /&gt;                        style: "solid"&lt;BR /&gt;                    }&lt;BR /&gt;                }&lt;BR /&gt;                let wdistributionpipeLabel = {&lt;BR /&gt;                    symbol: {&lt;BR /&gt;                        type: "text",&lt;BR /&gt;                        color: "black",&lt;BR /&gt;                        haloColor: "white",&lt;BR /&gt;                        haloSize: "1.5px",&lt;BR /&gt;                        font: {&lt;BR /&gt;                            size: "13px",&lt;BR /&gt;                            family: "Noto sans",&lt;BR /&gt;                            style: "italic",&lt;BR /&gt;                            weight: "normal"&lt;BR /&gt;                        }                    },&lt;BR /&gt;                    labelPlacement: "above-center",&lt;BR /&gt;                    labelExpressionInfo: {&lt;BR /&gt;                        expression: "$feature.Shape__Length"&lt;BR /&gt;                    }&lt;BR /&gt;                }&lt;BR /&gt;                let wdistributionpipePopup = {&lt;BR /&gt;                    "title": "wdistributionpipe",&lt;BR /&gt;                    "content": "&amp;lt;br&amp;gt;Materal:&amp;lt;/br&amp;gt; {MATERIAL_E} &amp;lt;br&amp;gt;CITYENAME:&amp;lt;/br&amp;gt; {CITYENAME}"&lt;BR /&gt;                }                // transmission pipe&lt;BR /&gt;                let wtransmissionPipeSymbol = {&lt;BR /&gt;                    type: "simple",&lt;BR /&gt;                    symbol: {&lt;BR /&gt;                        type: "simple-line",&lt;BR /&gt;                        cap: "round",&lt;BR /&gt;                        color: [0, 0, 230],&lt;BR /&gt;                        width: "5px",&lt;BR /&gt;                        style: "solid"&lt;BR /&gt;                    }&lt;BR /&gt;                }&lt;BR /&gt;                let wtransmissionPipeLabel = {&lt;BR /&gt;                    symbol: {&lt;BR /&gt;                        type: "text",&lt;BR /&gt;                        color: "black",&lt;BR /&gt;                        haloColor: "white",&lt;BR /&gt;                        haloSize: "1.5px",&lt;BR /&gt;                        font: {&lt;BR /&gt;                            size: "13px",&lt;BR /&gt;                            family: "Noto sans",&lt;BR /&gt;                            style: "italic",&lt;BR /&gt;                            weight: "normal"&lt;BR /&gt;                        }                    },&lt;BR /&gt;                    labelPlacement: "above-center",&lt;BR /&gt;                    labelExpressionInfo: {&lt;BR /&gt;                        expression: "$feature.Shape__Length"&lt;BR /&gt;                    }&lt;BR /&gt;                }&lt;BR /&gt;                let wtransmissionPipePopup = {&lt;BR /&gt;                    "title": "WTransmissionPipe",&lt;BR /&gt;                    "content": "&amp;lt;br&amp;gt;Materal:&amp;lt;/br&amp;gt; {MATERIAL_E} &amp;lt;br&amp;gt;CITYENAME:&amp;lt;/br&amp;gt; {CITYENAME}"&lt;BR /&gt;                }&lt;BR /&gt;                const wtransmissionPipe = new FeatureLayer({&lt;BR /&gt;                    url: "&lt;A href="https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wtransmissionpipe/FeatureServer/0" target="_blank" rel="noopener noreferrer"&gt;https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wtransmissionpipe/FeatureServer/0&lt;/A&gt;",&lt;BR /&gt;                    outFiels: ["*"],&lt;BR /&gt;                    popupEnabled: true,&lt;BR /&gt;                    id: "WTransmissionPipe",&lt;BR /&gt;                    renderer: wtransmissionPipeSymbol,&lt;BR /&gt;                    labelingInfo: [wtransmissionPipeLabel],&lt;BR /&gt;                    popupTemplate: wtransmissionPipePopup&lt;BR /&gt;                });                const wdistributionpipe = new FeatureLayer({&lt;BR /&gt;                    url: "&lt;A href="https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wdistributionpipe/FeatureServer/0" target="_blank" rel="noopener noreferrer"&gt;https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wdistributionpipe/FeatureServer/0&lt;/A&gt;",&lt;BR /&gt;                    outFiels: ["*"],&lt;BR /&gt;                    popupEnabled: true,&lt;BR /&gt;                    id: "wdistributionpipe",&lt;BR /&gt;                    renderer: wdistributionpipeSymbol,&lt;BR /&gt;                    labelingInfo: [wdistributionpipeLabel],&lt;BR /&gt;                    popupTemplate: wdistributionpipePopup&lt;BR /&gt;                })                const wfirehydrant = new FeatureLayer({&lt;BR /&gt;                    url: "&lt;A href="https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wfirehydrant/FeatureServer/0" target="_blank" rel="noopener noreferrer"&gt;https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wfirehydrant/FeatureServer/0&lt;/A&gt;",&lt;BR /&gt;                    outFiels: ["*"],&lt;BR /&gt;                    popupEnabled: true,&lt;BR /&gt;                    id: "wfirehydrant",&lt;BR /&gt;                    renderer: wfirehydrantSymbol,&lt;BR /&gt;                    outFiels: ["FID", "Z"],&lt;BR /&gt;                    popupTemplate: wfirehydrantPopup&lt;BR /&gt;                })                map = new Map({&lt;BR /&gt;                    basemap: "osm",&lt;BR /&gt;                    layers: [wtransmissionPipe, wdistributionpipe,&lt;BR /&gt;                         wfirehydrant&lt;BR /&gt;                    ]&lt;BR /&gt;                });&lt;BR /&gt;                view = new MapView({&lt;BR /&gt;                    container: "viewview",&lt;BR /&gt;                    map: map,&lt;BR /&gt;                    center: [43.902257, 26.38444],&lt;BR /&gt;                    zoom: 15&lt;BR /&gt;                });                view.map.allLayers.forEach((layer) =&amp;gt; {&lt;BR /&gt;                if (layer.type == 'feature') {&lt;BR /&gt;                    switch (layer.geometryType) {                        case "polyline":&lt;BR /&gt;                            lineLayer = layer;&lt;BR /&gt;                            break;&lt;BR /&gt;                        case "point":&lt;BR /&gt;                            pointLayer = layer;&lt;BR /&gt;                            break;                       &lt;BR /&gt;                    }&lt;BR /&gt;                }            });           const pointInfos = {&lt;BR /&gt;                  layer: pointLayer,&lt;BR /&gt;                    fieldConfig: [{&lt;BR /&gt;                         name: "Z",&lt;BR /&gt;                         label: "Elevation"&lt;BR /&gt;                     }, {&lt;BR /&gt;                          name: "X",&lt;BR /&gt;                          label: "LONGITUDE"&lt;BR /&gt;                     }]&lt;BR /&gt;                 };            const lineInfos = {&lt;BR /&gt;                     layer: lineLayer,&lt;BR /&gt;                     fieldConfig: [{&lt;BR /&gt;                         name: "Shape__Length",&lt;BR /&gt;                         label: "Length"&lt;BR /&gt;                     }, {&lt;BR /&gt;                         name: "CITYNAME",&lt;BR /&gt;                         label: "CITY NAME"&lt;BR /&gt;                    }]&lt;BR /&gt;                  };            const editor = new Editor({&lt;BR /&gt;                    view: view,                    layerInfos: [{&lt;BR /&gt;                        layer: pointLayer,&lt;BR /&gt;                        fieldConfig: [pointInfos]&lt;BR /&gt;                    }, {&lt;BR /&gt;                        layer: lineLayer,&lt;BR /&gt;                        fieldConfig: [lineInfos]&lt;BR /&gt;                    }, ],                    snappingOptions: {&lt;BR /&gt;                        enabled: true,&lt;BR /&gt;                        selfEnabled: true,&lt;BR /&gt;                        featureEnabled: true,&lt;BR /&gt;                        featureSources: [{&lt;BR /&gt;                            layer: pointLayer&lt;BR /&gt;                        }, {&lt;BR /&gt;                            layer: lineLayer&lt;BR /&gt;                        }]&lt;BR /&gt;                    }&lt;BR /&gt;                });                view.ui.add(editor, "top-right");            });    &amp;lt;/script&amp;gt;    &amp;lt;div id="viewview"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;    &amp;lt;div id="editDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;here the screenshots&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nouvelle image.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/18501i6FAEEB409AC45084/image-size/large?v=v2&amp;amp;px=999" role="button" title="Nouvelle image.png" alt="Nouvelle image.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nouvelle image (1).png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/18502i4B530440B3722865/image-size/large?v=v2&amp;amp;px=999" role="button" title="Nouvelle image (1).png" alt="Nouvelle image (1).png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 06:40:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079110#M73878</guid>
      <dc:creator>AbirELTAIEF1</dc:creator>
      <dc:date>2021-07-15T06:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Editor widget does not work (it appears but not functional), pleasehelp!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079125#M73879</link>
      <description>&lt;P&gt;HI&lt;BR /&gt;You don't need to loop trough the layers. The Editor-Widget itself checks the editable layers and add them to the widget. If you would like to do some fine-grained configuration you need to that on:&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#layerInfos" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#layerInfos&lt;/A&gt;&lt;BR /&gt;and even then you do not need to iterate because you define them separately and you can just use them.&lt;/P&gt;&lt;P&gt;To mention, your featurelayer are public accessible and everyone can edit them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Working code-sample with your data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;

&amp;lt;head&amp;gt;
  &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt;
  &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"&amp;gt;
  &amp;lt;meta name="description" content=""&amp;gt;
  &amp;lt;title&amp;gt;Edting&amp;lt;/title&amp;gt;
  &amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.20/esri/css/main.css"&amp;gt;
  &amp;lt;style&amp;gt;
    html,
    body,
    #viewview {
      padding: 0px;
      margin: 0px;
      height: 100%;
      width: 100%;
    }
  &amp;lt;/style&amp;gt;
  &amp;lt;script src="https://js.arcgis.com/4.20"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;
  &amp;lt;div id="viewview"&amp;gt;&amp;lt;/div&amp;gt;
  &amp;lt;script&amp;gt;
    require(["esri/widgets/Editor", "esri/layers/FeatureLayer", "esri/views/MapView", "esri/Map"], function(Editor, FeatureLayer, MapView, Map) {
      const wfirehydrantSymbol = {
        type: "simple",
        symbol: {
          type: "picture-marker",
          url: "https://img.icons8.com/doodle/48/000000/fire-hydrant--v1.png",
          width: "20px",
          height: "20px"
        }
      };
      const wfirehydrantPopup = {
        title: "wfirehydrant",
        content: "&amp;lt;br&amp;gt;FID:&amp;lt;/br&amp;gt; {FID} &amp;lt;br&amp;gt;z:&amp;lt;/br&amp;gt; {z}"
      };
      const wdistributionpipeSymbol = {
        type: "simple",
        symbol: {
          type: "simple-line",
          cap: "round",
          color: [0, 172, 230],
          width: "5px",
          style: "solid"
        }
      };
      const wdistributionpipeLabel = {
        symbol: {
          type: "text",
          color: "black",
          haloColor: "white",
          haloSize: "1.5px",
          font: {
            size: "13px",
            family: "Noto sans",
            style: "italic",
            weight: "normal"
          }
        },
        labelPlacement: "above-center",
        labelExpressionInfo: {
          expression: "$feature.Shape__Length"
        }
      };
      let wdistributionpipePopup = {
        title: "wdistributionpipe",
        content: "&amp;lt;br&amp;gt;Materal:&amp;lt;/br&amp;gt; {MATERIAL_E} &amp;lt;br&amp;gt;CITYENAME:&amp;lt;/br&amp;gt; {CITYENAME}"
      };
      let wtransmissionPipeSymbol = {
        type: "simple",
        symbol: {
          type: "simple-line",
          cap: "round",
          color: [0, 0, 230],
          width: "5px",
          style: "solid"
        }
      };
      let wtransmissionPipeLabel = {
        symbol: {
          type: "text",
          color: "black",
          haloColor: "white",
          haloSize: "1.5px",
          font: {
            size: "13px",
            family: "Noto sans",
            style: "italic",
            weight: "normal"
          }
        },
        labelPlacement: "above-center",
        labelExpressionInfo: {
          expression: "$feature.Shape__Length"
        }
      };
      let wtransmissionPipePopup = {
        title: "WTransmissionPipe",
        content: "&amp;lt;br&amp;gt;Materal:&amp;lt;/br&amp;gt; {MATERIAL_E} &amp;lt;br&amp;gt;CITYENAME:&amp;lt;/br&amp;gt; {CITYENAME}"
      };
      const wtransmissionPipe = new FeatureLayer({
        url: "https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wtransmissionpipe/FeatureServer/0",
        popupEnabled: true,
        id: "WTransmissionPipe",
        renderer: wtransmissionPipeSymbol,
        labelingInfo: [wtransmissionPipeLabel],
        popupTemplate: wtransmissionPipePopup
      });
      const wdistributionpipe = new FeatureLayer({
        url: "https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wdistributionpipe/FeatureServer/0",
        popupEnabled: true,
        id: "wdistributionpipe",
        renderer: wdistributionpipeSymbol,
        labelingInfo: [wdistributionpipeLabel],
        popupTemplate: wdistributionpipePopup
      });
      const wfirehydrant = new FeatureLayer({
        url: "https://services3.arcgis.com/0G16ZDbXMbWFq4Wr/arcgis/rest/services/wfirehydrant/FeatureServer/0",
        popupEnabled: true,
        id: "wfirehydrant",
        renderer: wfirehydrantSymbol,
        popupTemplate: wfirehydrantPopup
      });
      const map = new Map({
        basemap: "osm",
        layers: [wtransmissionPipe, wdistributionpipe, wfirehydrant]
      });
      const view = new MapView({
        container: "viewview",
        map: map,
        center: [43.902257, 26.38444],
        zoom: 15
      });
      const editor = new Editor({
        view: view,
        snappingOptions: {
          enabled: true,
          selfEnabled: true,
          featureEnabled: true,
          featureSources: [{
              layer: wfirehydrant
            },
            {
              layer: wdistributionpipe
            },
            {
              layer: wtransmissionPipe
            }
          ]
        }
      });
      view.ui.add(editor, "top-right");
    });
  &amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;

&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 09:36:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079125#M73879</guid>
      <dc:creator>SaschaBrunnerCH</dc:creator>
      <dc:date>2021-07-15T09:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Editor widget does not work (it appears but not functional), pleasehelp!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079138#M73881</link>
      <description>&lt;P&gt;Really, Big Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jul 2021 08:57:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/editor-widget-does-not-work-it-appears-but-not/m-p/1079138#M73881</guid>
      <dc:creator>AbirELTAIEF1</dc:creator>
      <dc:date>2021-07-15T08:57:32Z</dc:date>
    </item>
  </channel>
</rss>

