<?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: Cannot read property 'call' of undefined in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794961#M4551</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Elizabeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;There is nothing that stands out in your code as an error.&amp;nbsp;What does the function that calls&amp;nbsp;addtoMap look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2018 13:11:16 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2018-05-23T13:11:16Z</dc:date>
    <item>
      <title>Cannot read property 'call' of undefined</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794960#M4550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My custom widget has a click event handler that works with a draw toolbar&amp;nbsp;and a dojo deferred function to create a snapped point on a map. The tool is working well with no errors in functionality in the map but I am getting a console error that I can't get rid of. I can't figure out what is causing it. The error occurs after the&lt;STRONG&gt; console.log('end')&lt;/STRONG&gt; and before the &lt;STRONG&gt;console.log('second end')&lt;/STRONG&gt; (see code snippet below). Can anyone help me troubleshoot the cause of this error so I can get rid of it? Here is the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Uncaught TypeError: Cannot read property 'call' of undefined&lt;/STRONG&gt;&lt;BR /&gt; at Object.&amp;lt;anonymous&amp;gt; (init.js:653)&lt;BR /&gt; at Object.c [as onClick] (init.js:119)&lt;BR /&gt; at Object._fire (init.js:1299)&lt;BR /&gt; at Object._fireClickEvent (init.js:1306)&lt;BR /&gt; at init.js:63&lt;BR /&gt;(anonymous) @ init.js:653&lt;BR /&gt;c @ init.js:119&lt;BR /&gt;_fire @ init.js:1299&lt;BR /&gt;_fireClickEvent @ init.js:1306&lt;BR /&gt;(anonymous) @ init.js:63&lt;BR /&gt;setTimeout (async)&lt;BR /&gt;_onClickHandler @ init.js:1305&lt;BR /&gt;(anonymous) @ init.js:63&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;addtoMap: function(evt){

 
this.own(this.defmapClickEvtHandler = this.map.on("click", lang.hitch(this, function(evt){
 
this.map.graphics.clear();
 
var deferred = this.map.snappingManager.getSnappingPoint(evt.screenPoint);
 
var sms = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_DIAMOND, 12,
 new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([70, 0, 130, 1]), 1), new Color([70, 0, 130, 1]));
 
deferred.then(lang.hitch(this, function(value){
 
 var point;
 
 if (value !== undefined){
 point = value;
 
 } else {
 point = evt.mapPoint;
 
 } 
 
 var graphic = new Graphic(point, sms);
 
 this.map.graphics.add(graphic);
 
},
 
));
console.log('end');
 
 })));

console.log('second end');&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:10:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794960#M4550</guid>
      <dc:creator>ElizabethMiller</dc:creator>
      <dc:date>2021-12-12T09:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot read property 'call' of undefined</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794961#M4551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Elizabeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;There is nothing that stands out in your code as an error.&amp;nbsp;What does the function that calls&amp;nbsp;addtoMap look like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 13:11:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794961#M4551</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-05-23T13:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot read property 'call' of undefined</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794962#M4552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK Robert, here goes, here is more of my code, hope it's not too bad! As I said, it functions well right now in the map. Thank you for your attention.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elizabeth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;return declare([BaseWidget, _WidgetsInTemplateMixin], {
baseClass: 'jimu-widget-mywidget',
 name: 'mywidget',
 
 gtoolbar: [],
postCreate: function() {
 this.inherited(arguments);
 console.log('postCreate');
 
 },

startup: function() {
 this.inherited(arguments); 
 
 },

toggleGTM: function () {
 
 if (this.toggleButton.label == 'Tool Stopped'){
 this.toggleButton.set('label', 'Tool Started');
 this.toggleButton.set('baseClass', 'success');
 this.map.setMapCursor('crosshair');
 this.own(this.mapClickEvtHandler = this.map.on("click", lang.hitch(this.createToolbar())));
 
 
 } else if (this.toggleButton.label == 'Tool Started'){
 this.toggleButton.set('baseClass', 'danger');
 this.toggleButton.set('label', 'Tool Stopped');
 this.map.setMapCursor('default');
 this.mapClickEvtHandler.remove();
 this.defmapClickEvtHandler.remove();
 this.onClose();
 
 
 }
 },
 
 
 createToolbar: function(){
 
 var trunkHwys = new FeatureLayer("http://myurl/FeatureServer/0",
 {
 mode: FeatureLayer.MODE_ONDEMAND,
 outFields: ["*"]
 });
 this.map.addLayers([trunkHwys]);
 
 var snapManager = this.map.enableSnapping({
 tolerance: 30,
 alwaysSnap: true
 });
 
 
 var layerInfos = [{
 layer: trunkHwys
 }];
 
 snapManager.setLayerInfos(layerInfos); 
 
 this.gtoolbar = new Draw(this.map);
 this.gtoolbar.activate(Draw["POINT"]);
 
 this.addtoMap();
},
 
addtoMap: function(){
 
 var geometryLocation;
 
 geometryLocation = "";
 
 this.own(this.defmapClickEvtHandler = this.map.on("click", lang.hitch(this, function(evt){
 
 this.map.graphics.clear();
 
 this.gtoolbar.activate(Draw["POINT"]);
var deferred = this.map.snappingManager.getSnappingPoint(evt.screenPoint);
 
 var sms = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_DIAMOND, 12,
 new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([70, 0, 130, 1]), 1), new Color([70, 0, 130, 1]));
 
 deferred.then(lang.hitch(this, function(value){
 
 var point;
 
 if (value !== undefined){
 point = value;
 
 } else {
 point = evt.mapPoint;
 
 } 
 
 var graphic = new Graphic(point, sms);
 
 this.map.graphics.add(graphic);
geometryLocation = {
 'geometry': {
 /* 'x': evt.mapPoint.x,
 'y': evt.mapPoint.y */
 'x': point.x,
 'y': point.y
 }
 };
},
 
 ));
 
 console.log('end');
 this.anotherfunction(geometryLocation);
 })));
 
//here is where the error occurs -- before 'second end'

 console.log('second end');
 
 },
‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:10:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794962#M4552</guid>
      <dc:creator>ElizabethMiller</dc:creator>
      <dc:date>2021-12-12T09:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot read property 'call' of undefined</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794963#M4553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Elizabeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;So based on your code you call createToolbar every time you click on the map after you toggle your button. Then you add another map click event listener in the addtoMap function. So basically you now have two functions listening for a map click and one of them continues to add more listeners each time the map is clicked. This is not a good workflow.&amp;nbsp; It would seem more appropriate for your&amp;nbsp;toggleGTM to call the createToolbar directly instead of adding a map click event listener to call it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 14:52:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794963#M4553</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-05-23T14:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot read property 'call' of undefined</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794964#M4554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that did it! Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the following changes to the toggleGTM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;toggleGTM: function () {
 
 if (this.toggleButton.label == 'Tool Stopped'){
 this.toggleButton.set('label', 'Tool Started');
 this.toggleButton.set('baseClass', 'success');
 this.map.setMapCursor('crosshair');
 //this.own(this.mapClickEvtHandler = this.map.on("click", lang.hitch(this.createToolbar())));
 this.createToolbar();
 
 
 } else if (this.toggleButton.label == 'Tool Started'){
 this.toggleButton.set('baseClass', 'danger');
 this.toggleButton.set('label', 'Tool Stopped');
 this.map.setMapCursor('default');
 //this.mapClickEvtHandler.remove();
 this.defmapClickEvtHandler.remove();
 this.gtoolbar.deactivate();
 this.onClose();
 
 
 }
 },&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:10:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/cannot-read-property-call-of-undefined/m-p/794964#M4554</guid>
      <dc:creator>ElizabethMiller</dc:creator>
      <dc:date>2021-12-12T09:10:27Z</dc:date>
    </item>
  </channel>
</rss>

