<?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: How to close a drilldown panel in dashboard without refresh? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280336#M43219</link>
    <description>&lt;P&gt;You need to have some other action (a click somewhere else or when the 'Submit' button is pressed) &lt;CODE&gt;unset&lt;/CODE&gt; the token that causes the other panel to open.  You could even create a new button to do this.&lt;/P&gt;</description>
    <pubDate>Tue, 07 Feb 2017 21:59:36 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2017-02-07T21:59:36Z</dc:date>
    <item>
      <title>How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280333#M43216</link>
      <description>&lt;P&gt;We have a drilldown dashboard, where one more panel appears after we click a value of the first panel ( used tokens).&lt;BR /&gt;
Now after we have viewed the additional panel produced, how can we close that drilldown panel to have only the first panel in the dashboard?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 10:10:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280333#M43216</guid>
      <dc:creator>abhijitnath89</dc:creator>
      <dc:date>2017-02-07T10:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280334#M43217</link>
      <description>&lt;P&gt;Is it possible to provide the xml config?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 12:30:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280334#M43217</guid>
      <dc:creator>adayton20</dc:creator>
      <dc:date>2017-02-07T12:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280335#M43218</link>
      <description>&lt;P&gt;Would a 'Reset Drilldown' button work?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
         &amp;lt;button class="btn" data-token-json="{ &amp;amp;quot;drilldownToken&amp;amp;quot;: null}"&amp;gt;Reset Drilldown&amp;lt;/button&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Feb 2017 13:03:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280335#M43218</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-02-07T13:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280336#M43219</link>
      <description>&lt;P&gt;You need to have some other action (a click somewhere else or when the 'Submit' button is pressed) &lt;CODE&gt;unset&lt;/CODE&gt; the token that causes the other panel to open.  You could even create a new button to do this.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 21:59:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280336#M43219</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-02-07T21:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280337#M43220</link>
      <description>&lt;P&gt;Thanks a lot, it worked like a wonder. I used the below format&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;     &amp;lt;choice value="1"&amp;gt;Close Drilldown&amp;lt;/choice&amp;gt;
     &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;

     &amp;lt;change&amp;gt;
       &amp;lt;condition value="1"&amp;gt;
         &amp;lt;unset token="searchWhenChanged"&amp;gt;&amp;lt;/unset&amp;gt;
       &amp;lt;/condition&amp;gt;
     &amp;lt;/change&amp;gt;
   &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 11 Feb 2017 17:53:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280337#M43220</guid>
      <dc:creator>abhijitnath89</dc:creator>
      <dc:date>2017-02-11T17:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280338#M43221</link>
      <description>&lt;P&gt;when i click on reset drilldown..nothing happens&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 13:53:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/280338#M43221</guid>
      <dc:creator>logloganathan</dc:creator>
      <dc:date>2019-08-07T13:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to close a drilldown panel in dashboard without refresh?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/529922#M43222</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/1406"&gt;@woodcock&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how the "&lt;SPAN&gt;click somewhere else" option would work?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 14:53:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-close-a-drilldown-panel-in-dashboard-without-refresh/m-p/529922#M43222</guid>
      <dc:creator>BernardEAI</dc:creator>
      <dc:date>2020-11-18T14:53:11Z</dc:date>
    </item>
  </channel>
</rss>

