<?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 Attribute window in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845974#M10364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jewelry Box theme. WAB 2.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a FeatureAction attached to the attribute window. When I activate my feature action a widget opens and I'd like to close the attribute window. How would I go about that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Dec 2016 19:33:05 GMT</pubDate>
    <dc:creator>GregRieck</dc:creator>
    <dc:date>2016-12-19T19:33:05Z</dc:date>
    <item>
      <title>Attribute window</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845974#M10364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jewelry Box theme. WAB 2.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a FeatureAction attached to the attribute window. When I activate my feature action a widget opens and I'd like to close the attribute window. How would I go about that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 19:33:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845974#M10364</guid>
      <dc:creator>GregRieck</dc:creator>
      <dc:date>2016-12-19T19:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute window</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845975#M10365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Sure you just need to get a reference to the AT widget and call the _closeTable method:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;//requires
'jimu/WidgetManager',
...
WidgetManager
...
var attWidget = WidgetManager.getInstance().getWidgetByLabel("Attribute Table");
if (attWidget) {
&amp;nbsp;&amp;nbsp; attWidget._closeTable();
}&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:22:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845975#M10365</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T10:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute window</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845976#M10366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for responding. Well, its not an Attribute Table. Its the Attribute Window. The popup window from selecting a feature on the map. It displays all the attributes of the selected feature, it has the zoom to link and the three dots on the right side. Those three dots is where my feature action is. So when I click my feature action I want this selected features attribute window to close. Does it have a different name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 20:35:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845976#M10366</guid>
      <dc:creator>GregRieck</dc:creator>
      <dc:date>2016-12-19T20:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute window</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845977#M10367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;No I just thought you were talking about the AT Widget. In that case it is as simple as&amp;nbsp;&lt;/P&gt;&lt;P&gt;this.map.infoWindow.hide();&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 20:41:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845977#M10367</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-12-19T20:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute window</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845978#M10368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Robert that is exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 21:08:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/attribute-window/m-p/845978#M10368</guid>
      <dc:creator>GregRieck</dc:creator>
      <dc:date>2016-12-19T21:08:41Z</dc:date>
    </item>
  </channel>
</rss>

