<?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: Open a widget in its own panel (dialog) in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824724#M7683</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; It depends on if the widget is in a on screen placeholder or a controller panel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some code for onscreen widget:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var pm = PanelManager.getInstance(); 
pm.showPanel(this.appConfig.widgetOnScreen.widgets[4]);&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work for opening a widget in some themes controller widgets:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var controller = WidgetManager.getInstance().getWidgetsByName('MyThemeController'); 
controller.openWidget(widgetConfig);&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/167515" target="_blank"&gt;How to open a widget from a controller programmatically ? &lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/167364" target="_blank"&gt;How to open a widget (in a placeholder) programmatically ?&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 09:49:25 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2021-12-12T09:49:25Z</dc:date>
    <item>
      <title>Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824723#M7682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added a button on it's click i want to open a widget as a dialog. i am using below code to open a widget&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var wconfig = &lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "Draw",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Draw",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "version": "2.0.1",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/Draw/Widget",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "config": "configs/Draw/config_Draw.json",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "index": 6,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "id": "widgets_Draw_Widget"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this.widgetManager.loadWidget(wconfig).then(lang.hitch(this, function(widget) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; widget.startup();&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.widgetManager.openWidget(widget);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the console it says widget [widgets/Draw/Widget] created. but i can't see the widget. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use this._getPanel(wconfig,true) the widget display in left panel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_getPanel: function(widgetCfg, start) {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; var def = new Deferred();&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; var panel;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; if (widgetCfg) {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; // Try getting the panel for this widget&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; panel = registry.byId(widgetCfg.id + '_panel');&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; if (panel) {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; def.resolve(panel);&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; } else {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; this.panelManager.showPanel(widgetCfg).then(function(panel) {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; if (start) {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; panel.startup();&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; }&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; def.resolve(panel);&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; });&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; }&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; } else {&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp; def.resolve(undefined);&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; }&amp;nbsp; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp; return def;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Idea what i am doing wrong here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 13:06:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824723#M7682</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-05T13:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824724#M7683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; It depends on if the widget is in a on screen placeholder or a controller panel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some code for onscreen widget:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var pm = PanelManager.getInstance(); 
pm.showPanel(this.appConfig.widgetOnScreen.widgets[4]);&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work for opening a widget in some themes controller widgets:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var controller = WidgetManager.getInstance().getWidgetsByName('MyThemeController'); 
controller.openWidget(widgetConfig);&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/167515" target="_blank"&gt;How to open a widget from a controller programmatically ? &lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/167364" target="_blank"&gt;How to open a widget (in a placeholder) programmatically ?&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 09:49:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824724#M7683</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T09:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824725#M7684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using &lt;/P&gt;&lt;OL class="dp-c" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #5c5c5c; margin-bottom: 1px !important; margin-left: 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt; pm = PanelManager.getInstance();&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;pm.showPanel(&lt;SPAN class="keyword" style="font-weight: inherit; font-style: inherit; color: #006699; font-size: 9pt !important; background-color: inherit;"&gt;this&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;.appConfig.widgetOnScreen.widgets[&lt;/SPAN&gt;&lt;SPAN class="number" style="font-weight: inherit; font-style: inherit; color: green; font-size: 9pt !important; background-color: inherit;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;]);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="background-color: inherit; color: black; font-weight: inherit; font-size: 9pt !important; font-style: inherit;"&gt;to open a widget but its opening in left panel instead of dialog i have also removed the panel from app configuration but it has no effect&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 17:17:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824725#M7684</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-06T17:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824726#M7685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;What determines if the widget opens in a panel or an on screen widget is how you configure the widget. It sounds like you need to move your widget to one of the on screen widget place holders.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 17:52:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824726#M7685</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-06T17:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824727#M7686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The documentation says if no panel is specified then jimu/OnScreenWidgetPanel is used by looking at the name it look's&amp;nbsp; like a dialog panel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 18:11:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824727#M7686</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-06T18:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824728#M7687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i launched my application now widget are opening into their own panel thanks, but if i open developer tool it goes in the left panel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 18:59:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824728#M7687</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-06T18:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824729#M7688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin, GISP&lt;/A&gt; in the web app builder application developer and when application is launched and developer tools is opened,&amp;nbsp; widgets are opened in left panel any idea how to stop this behavior.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:14:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824729#M7688</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-08T08:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824730#M7689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; As I mentioned in my last post what determines if a widget opens in a panel or an on screen dialog type is where you add the widget and what theme you are working with. Take for example the default theme type "Foldable" it has 5 onscreen widget placeholders and a controller widget called the header controller widget, which can have many widget added. The on screen widget place holders open on screen in a dialog type panel and the widgets added to the header controller open in a right hand panel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 13:03:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824730#M7689</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-08T13:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824731#M7690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is where i'm&amp;nbsp; confused why my placeholder&amp;nbsp; on screen wigdets are opening in right pannel&amp;nbsp; instead of &lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;dialog type panel when my screen height is small&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 13:09:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824731#M7690</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-08T13:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824732#M7691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OK, now that you tell me about the screen size this now makes sense. WAB is an application that is developed with a responsive design and when the app is use on a device with a limited screen real estate then the app will automatically switch to a more mobile friendly design. This means widget that were dialog panel now become paneled widgets.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 13:15:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824732#M7691</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-08T13:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Open a widget in its own panel (dialog)</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824733#M7692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry for not mentioning &lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;screen size&amp;nbsp;&amp;nbsp; before thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 13:23:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/open-a-widget-in-its-own-panel-dialog/m-p/824733#M7692</guid>
      <dc:creator>Haider_Ali</dc:creator>
      <dc:date>2016-06-08T13:23:23Z</dc:date>
    </item>
  </channel>
</rss>

