<?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 and Fullscreen Issue... in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504907#M85027</link>
    <description>&lt;P&gt;BUT I am at 4.29 and think I should be using watchUtils ????&amp;nbsp; Can I get the status of FULLSCREEN from watchUtils?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jul 2024 16:47:15 GMT</pubDate>
    <dc:creator>kapalczynski</dc:creator>
    <dc:date>2024-07-12T16:47:15Z</dc:date>
    <item>
      <title>Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504285#M85015</link>
      <description>&lt;P&gt;I have a .net app that I am working from that has an inset map that allows users to identify features etc.&amp;nbsp; The map is not that large so I created a new DIV and used the code below to populate the popup into this new DIV OUTSIDE the map view.&amp;nbsp; This works Great...&amp;nbsp;&lt;/P&gt;&lt;P&gt;BUT the problem arises as I have a FULLSCREEN button in this map... When the user clicks the full screen button the map fills the screen as it should.... BUT when I click a feature the popup does not show because I am full screen...&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking for a solution...&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way that I can make the map popup show again when the user is in full screen?&amp;nbsp; Some sort of alert that when the users goes to full screen the identify no longer goes to the new DIV but pops up the map?&amp;nbsp; And when its not in Fullscreen it shows up in the new DIV?&lt;BR /&gt;Can I track when the FULLSCREEN button is clicked and push the results to a popup in the map view and when the button is unchecked and it goes back to SMALLSCREEN that the data is pushed to the new DIV&lt;/P&gt;&lt;P&gt;Or some version of this?&amp;nbsp; Or maybe some other way?&amp;nbsp; Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;&amp;lt;div class="mapStyle"&amp;gt;
    &amp;lt;div id="permitView" class="mainapplicationMapStyle"&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;div id="features-widget" class="calcite-match-height"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;                const featuresWidget = new Features({
                  container: "features-widget",
                  viewModel: {
                    // Add a custom action to the widget that will open a
                    // website when it's selected.
                    actions: [
                      {
                        type: "button",
                        title: "Visitation Highlights (2022)",
                        id: "more-info",
                        icon: "information-letter"
                      }
                    ],
                    view: view
                  }
                });

                // Open the Features widget with features fetched from
                // the view click event location.
                reactiveUtils.on(
                  () =&amp;gt; view,
                  "click",
                  (event) =&amp;gt; {
                    featuresWidget.open({
                      location: event.mapPoint,
                      fetchFeatures: true
                    });
                  }
                );&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kapalczynski_0-1720715312626.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/109536i12369E20C9FEBA57/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kapalczynski_0-1720715312626.png" alt="kapalczynski_0-1720715312626.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 16:28:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504285#M85015</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-11T16:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504855#M85024</link>
      <description>&lt;P&gt;Is there a way that I can determine when the button to fullscreen is clicked or activated?&amp;nbsp; Maybe I can make the popup in the map active when its been clicked?&amp;nbsp; And then push the popup to the DIV when its not active?&lt;/P&gt;&lt;P&gt;for starters write the console.log when its clicked and get its status?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 15:48:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504855#M85024</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-12T15:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504897#M85026</link>
      <description>&lt;P&gt;Im trying this but getting error&lt;/P&gt;&lt;LI-CODE lang="c"&gt;            // FullScreen Widget
            fullscreen = new Fullscreen({
                view: view
            });
            view.ui.add(fullscreen, "top-right");

            reactiveUtils.on(fullscreenWidget.viewModel, "state", (value) =&amp;gt; {
                    if (value === "active") {
                    console.log("========================Entered Fullscreen mode");
                }
            })&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kapalczynski_0-1720802064894.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/109680i5274E6144AE09FE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kapalczynski_0-1720802064894.png" alt="kapalczynski_0-1720802064894.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 16:34:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504897#M85026</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-12T16:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504907#M85027</link>
      <description>&lt;P&gt;BUT I am at 4.29 and think I should be using watchUtils ????&amp;nbsp; Can I get the status of FULLSCREEN from watchUtils?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 16:47:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504907#M85027</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-12T16:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504929#M85028</link>
      <description>&lt;P&gt;Side issue I updated my 4.29 reference to 4.6 and get all these errors... thoughts?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kapalczynski_0-1720804670269.png" style="width: 530px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/109686i5321ACA07B72E038/image-dimensions/530x654?v=v2" width="530" height="654" role="button" title="kapalczynski_0-1720804670269.png" alt="kapalczynski_0-1720804670269.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 17:18:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1504929#M85028</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-12T17:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1505775#M85052</link>
      <description>&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2024 12:54:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1505775#M85052</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-16T12:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1505854#M85055</link>
      <description>&lt;P&gt;I think I have what I need to push the attributes to a popup and alternatively push the results to a DIV.&lt;/P&gt;&lt;P&gt;My issue is I need to catch when the user goes Fullscreen or visa versa...&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using 4.29:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I dont see a way with reactUtils to catch the Fullscreen mode&lt;/LI&gt;&lt;LI&gt;If I add watchUtils to my app I get errors&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;require&lt;/SPAN&gt;&lt;SPAN&gt;([&lt;/SPAN&gt;&lt;SPAN class=""&gt;"esri/core/watchUtils"&lt;/SPAN&gt;&lt;SPAN&gt;], &lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;function&lt;/SPAN&gt;(&lt;SPAN class=""&gt;watchUtils&lt;/SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;{ &lt;/SPAN&gt;&lt;SPAN class=""&gt;/* code goes here */&lt;/SPAN&gt;&lt;SPAN&gt; });&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kapalczynski_0-1721147643013.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/109872i58890858DB8C5266/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kapalczynski_0-1721147643013.png" alt="kapalczynski_0-1721147643013.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;fullscreenWidget.viewModel is 4.6 and above I think... when I set my project to 4.6 I get the errors above.. are those no longer supported in 4.6 or do I have to change them?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be most appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I can capture when the status of the Fullscreen widget I can turn popups on or if its off I can push the values to the new DIV&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2024 16:35:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1505854#M85055</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-16T16:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506597#M85060</link>
      <description>&lt;P&gt;Is this possible in 4.29 or 4.30 api?&amp;nbsp; Can I determine when the FullScreen Button is active?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 12:56:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506597#M85060</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-18T12:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506641#M85061</link>
      <description>&lt;P&gt;You are getting a not defined error because you named your variable fullscreen, but used fullscreenWidget in your reactiveUtils function.&lt;/P&gt;&lt;P&gt;You may also need to wrap the reactiveUtils function in a setTimeout function so the widget will be loaded to the ui before calling the reactiveUtils function.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 14:18:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506641#M85061</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2024-07-18T14:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506702#M85063</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/677423"&gt;@JeffreyThompson2&lt;/a&gt;&amp;nbsp; thank you for your response...MOST Appreciated...&amp;nbsp; this is what I have&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I do this:&amp;nbsp;&amp;nbsp;&lt;EM&gt;You may also need to wrap the reactiveUtils function in a setTimeout function so the widget will be loaded to the ui before calling the reactiveUtils function.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;If I add lines 14-18 I get the error below...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;    rendermap: function (codeBlock, gisInputs) {
        require([ .... SNIP ....
            "esri/PopupTemplate", "esri/core/reactiveUtils",
            "esri/widgets/Fullscreen/FullscreenViewModel", "esri/widgets/Fullscreen"
        ], function ( .... SNIP .... 
            reactiveUtils, FullscreenVM, Fullscreen) {

            // FullScreen Widget
            fullscreen = new Fullscreen({
                view: view
            });
            view.ui.add(fullscreen, "top-right");

            reactiveUtils.on(fullscreen.viewModel, "state", (value) =&amp;gt; {
                if (value === "active") {
                    console.log("========================Entered Fullscreen mode");
                }
            })&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;4.30/:179 Uncaught TypeError: z.call is not a function&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at Module.n [as runTracked] (4.30/:179:389)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at g (4.30/:222:459)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at a.reactionDeferred (4.30/:223:13)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at r (4.30/:189:40)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at a.watchTracked (4.30/:192:156)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at l (4.30/:705:417)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at k (4.30/:705:290)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at Module.w [as on] (4.30/:706:157)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at gis.js:810:27&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;at Ta (4.30/:23:484)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 15:44:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506702#M85063</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-18T15:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506711#M85064</link>
      <description>&lt;P&gt;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/API/setTimeout" target="_blank"&gt;https://developer.mozilla.org/en-US/docs/Web/API/setTimeout&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;setTimeout is a built-in JavaScript function that delays a block of code by a given amount of milliseconds.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;setTimeout(() =&amp;gt; {
reactiveUtils.on(fullscreen.viewModel, "state", (value) =&amp;gt; {
                if (value === "active") {
                    console.log("========================Entered Fullscreen mode");
                }
            })
},500)&lt;/LI-CODE&gt;&lt;P&gt;This modification should delay creating the reactiveUtils function by half a second which should be enough time for the fullscreen widget to be loaded to memory. It will probably clear the new error.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 15:58:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1506711#M85064</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2024-07-18T15:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1508202#M85081</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/677423"&gt;@JeffreyThompson2&lt;/a&gt;&amp;nbsp; for some reason I still get this error... It gives me the error when the page loads... not when I click the full screen button... I can still click the fullscreen and it works... its just the timeout and code throws the error and does not alert the console.&lt;BR /&gt;&lt;BR /&gt;4.29/:178 Uncaught TypeError: z.call is not a function&lt;BR /&gt;at Module.n [as runTracked] (4.29/:178:485)&lt;BR /&gt;at h (4.29/:222:12)&lt;BR /&gt;at a.reactionDeferred (4.29/:222:88)&lt;BR /&gt;at x (4.29/:188:163)&lt;BR /&gt;at a.watchTracked (4.29/:191:295)&lt;BR /&gt;at m (4.29/:1492:495)&lt;BR /&gt;at l (4.29/:1492:368)&lt;BR /&gt;at Module.w [as on] (4.29/:1493:228)&lt;BR /&gt;at gis.js:107:35&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using this in my script to open a DIV and populate it with the contents of the popup so I know its not the actual&amp;nbsp;reactiveUtils.on but rather whats inside the .on statement&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Other example in my script of using reactiveUtils&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;                reactiveUtils.on(
                    () =&amp;gt; view,
                    "click",
                    (event) =&amp;gt; {
                        featuresWidget.open({
                            location: event.mapPoint,
                            fetchFeatures: true
                        });
                    }
                );&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 12:46:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1508202#M85081</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-23T12:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1510739#M85120</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/677423"&gt;@JeffreyThompson2&lt;/a&gt;&amp;nbsp; any more thoughts about this error I am getting... its so well defined like all ESRI errors...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 17:30:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1510739#M85120</guid>
      <dc:creator>kapalczynski</dc:creator>
      <dc:date>2024-07-26T17:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Popups and Fullscreen Issue...</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1653840#M87666</link>
      <description>&lt;P&gt;I was also getting the "&lt;SPAN&gt;call is not a function" using your snippet.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But I just got this working by using the reactiveUtils.watch() method rather than on().&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-core-reactiveUtils.html" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-core-reactiveUtils.html&lt;/A&gt;&lt;/P&gt;&lt;DIV&gt;reactiveUtils.watch(()=&amp;gt;fullscreenWidget.viewModel.state,(value)=&amp;gt;{&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;console.log(value);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;});&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 13:25:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popups-and-fullscreen-issue/m-p/1653840#M87666</guid>
      <dc:creator>JeremyLyman</dc:creator>
      <dc:date>2025-09-29T13:25:30Z</dc:date>
    </item>
  </channel>
</rss>

