<?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 only show the panel selected from a drop-down and keep the rest of the panels hidden? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212071#M13251</link>
    <description>&lt;P&gt;Hi @gyslainlatsa&lt;/P&gt;

&lt;P&gt;Similar to the above question i need a solution for the below. can you please help me out?&lt;/P&gt;

&lt;P&gt;I have 15 sections starting from 1.1, 1.2, 1.3, 1.4 ..... 1.15. (This 15 sections im displaying in a dropdown). Each section contains around 10 panels. so 15x10=150 panels in a single dashboard. now i want to show only the selected Section panels in the dashboard remaining i want to hide it. how can i do it. &lt;/P&gt;

&lt;P&gt;Thank you in advance.&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ranjith&lt;/P&gt;</description>
    <pubDate>Fri, 20 Jan 2017 09:25:16 GMT</pubDate>
    <dc:creator>ranjith_kumar</dc:creator>
    <dc:date>2017-01-20T09:25:16Z</dc:date>
    <item>
      <title>How to only show the panel selected from a drop-down and keep the rest of the panels hidden?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212067#M13247</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a drop-down with a list of 10 panels. Each panel runs a different search. Now I want to show only the panel selected in the drop-down and keep rest of the panels hidden.&lt;/P&gt;

&lt;P&gt;I am facing issue assigning tokens to each value of the drop-down.&lt;/P&gt;

&lt;P&gt;Is this possible?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 21:01:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212067#M13247</guid>
      <dc:creator>kamal_jagga</dc:creator>
      <dc:date>2016-02-23T21:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to only show the panel selected from a drop-down and keep the rest of the panels hidden?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212068#M13248</link>
      <description>&lt;P&gt;hi kamal_jagga,&lt;/P&gt;

&lt;P&gt;try like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;Display Dynamic Panel&amp;lt;/label&amp;gt;
   &amp;lt;row&amp;gt;
      &amp;lt;panel&amp;gt;  
        &amp;lt;input type="dropdown" token="" searchWhenChanged="true"&amp;gt;
          &amp;lt;choice value="1"&amp;gt;Panel1&amp;lt;/choice&amp;gt;
          &amp;lt;choice value="2"&amp;gt;Panel2&amp;lt;/choice&amp;gt;
          &amp;lt;choice value="3"&amp;gt;Panel3&amp;lt;/choice&amp;gt;
         &amp;lt;choice value="4"&amp;gt;Panel4&amp;lt;/choice&amp;gt;
          &amp;lt;choice value="5"&amp;gt;Panel5&amp;lt;/choice&amp;gt;
          &amp;lt;choice value="6"&amp;gt;Panel6&amp;lt;/choice&amp;gt;
         &amp;lt;choice value="7"&amp;gt;Panel7&amp;lt;/choice&amp;gt;
          &amp;lt;choice value="8"&amp;gt;Panel8&amp;lt;/choice&amp;gt;
          &amp;lt;choice value="9"&amp;gt;Panel9&amp;lt;/choice&amp;gt;
         &amp;lt;choice value="10"&amp;gt;Panel10&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;set token="new_search"&amp;gt; Search1&amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition value="2"&amp;gt;
              &amp;lt;set token="new_search"&amp;gt; Search2 &amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition value="3"&amp;gt;
              &amp;lt;set token="new_search"&amp;gt;Search3 &amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
            &amp;lt;condition value="4"&amp;gt;
              &amp;lt;set token="new_search"&amp;gt; search4 &amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
           &amp;lt;condition value="5"&amp;gt;
              &amp;lt;set token="new_search"&amp;gt;Search5 &amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
                    ----------------------------------------
                    -----------------------------------------
                    ----------------------------------------
           &amp;lt;condition value="10"&amp;gt;
              &amp;lt;set token="new_search"&amp;gt; Search10 &amp;lt;/set&amp;gt;
            &amp;lt;/condition&amp;gt;
          &amp;lt;/change&amp;gt;
        &amp;lt;/input&amp;gt;

        &amp;lt;chart&amp;gt;
          &amp;lt;search&amp;gt;
            &amp;lt;query&amp;gt;$new_search$&amp;lt;/query&amp;gt;
            &amp;lt;earliest&amp;gt;-4h@m&amp;lt;/earliest&amp;gt;
            &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;/search&amp;gt;
          &amp;lt;option name="charting.chart"&amp;gt;column&amp;lt;/option&amp;gt;
        &amp;lt;/chart&amp;gt;
      &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
  &amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Feb 2016 21:24:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212068#M13248</guid>
      <dc:creator>gyslainlatsa</dc:creator>
      <dc:date>2016-02-23T21:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to only show the panel selected from a drop-down and keep the rest of the panels hidden?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212069#M13249</link>
      <description>&lt;P&gt;Awesome. Works great. Thank you !!!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 17:19:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212069#M13249</guid>
      <dc:creator>kamal_jagga</dc:creator>
      <dc:date>2016-02-24T17:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to only show the panel selected from a drop-down and keep the rest of the panels hidden?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212070#M13250</link>
      <description>&lt;P&gt;thanks, don't forget to vote&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 19:01:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212070#M13250</guid>
      <dc:creator>gyslainlatsa</dc:creator>
      <dc:date>2016-02-24T19:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to only show the panel selected from a drop-down and keep the rest of the panels hidden?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212071#M13251</link>
      <description>&lt;P&gt;Hi @gyslainlatsa&lt;/P&gt;

&lt;P&gt;Similar to the above question i need a solution for the below. can you please help me out?&lt;/P&gt;

&lt;P&gt;I have 15 sections starting from 1.1, 1.2, 1.3, 1.4 ..... 1.15. (This 15 sections im displaying in a dropdown). Each section contains around 10 panels. so 15x10=150 panels in a single dashboard. now i want to show only the selected Section panels in the dashboard remaining i want to hide it. how can i do it. &lt;/P&gt;

&lt;P&gt;Thank you in advance.&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ranjith&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2017 09:25:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-only-show-the-panel-selected-from-a-drop-down-and-keep/m-p/212071#M13251</guid>
      <dc:creator>ranjith_kumar</dc:creator>
      <dc:date>2017-01-20T09:25:16Z</dc:date>
    </item>
  </channel>
</rss>

