<?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 Add a help panel to a dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241979#M15022</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a dashboard that I would like to add a "help" panel/text to.  I'd like it to be hidden by default but when a user presses a button/radio button/something, the panel with the help instructions show up and then when the user is done the user would click inside the panel and it hides. &lt;/P&gt;

&lt;P&gt;Is something like this possible?&lt;/P&gt;</description>
    <pubDate>Sun, 21 Aug 2016 19:22:10 GMT</pubDate>
    <dc:creator>dbcase</dc:creator>
    <dc:date>2016-08-21T19:22:10Z</dc:date>
    <item>
      <title>Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241979#M15022</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a dashboard that I would like to add a "help" panel/text to.  I'd like it to be hidden by default but when a user presses a button/radio button/something, the panel with the help instructions show up and then when the user is done the user would click inside the panel and it hides. &lt;/P&gt;

&lt;P&gt;Is something like this possible?&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2016 19:22:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241979#M15022</guid>
      <dc:creator>dbcase</dc:creator>
      <dc:date>2016-08-21T19:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241980#M15023</link>
      <description>&lt;P&gt;You could add an HTML panel that depends on a token, this token gets set by your button/radio button/something which in turn makes the depending panel appear.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="radio" token="dummy" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Show Help:&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;No&amp;lt;/default&amp;gt;
      &amp;lt;choice value="No"&amp;gt;No&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="Yes"&amp;gt;Yes&amp;lt;/choice&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition value="No"&amp;gt;
          &amp;lt;unset token="showhelp" /&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition value="Yes"&amp;gt;
          &amp;lt;set token="showhelp"&amp;gt;awwwyeah&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;

  &amp;lt;row&amp;gt;
    &amp;lt;panel depends="$showhelp$"&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;h1&amp;gt;
          HTML Panels
        &amp;lt;/h1&amp;gt;
        &amp;lt;p&amp;gt;Easily add content to clarify use of a dashboard.&amp;lt;/p&amp;gt;
      &amp;lt;/html&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>Sun, 21 Aug 2016 21:22:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241980#M15023</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-08-21T21:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241981#M15024</link>
      <description>&lt;P&gt;Thats what I was thinking but unsure how to go about it.  Could you provide an example?&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2016 21:26:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241981#M15024</guid>
      <dc:creator>dbcase</dc:creator>
      <dc:date>2016-08-21T21:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241982#M15025</link>
      <description>&lt;P&gt;Grab the Splunk 6.x Dashboard Examples app: &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You'll find an example for basic HTML panels and examples showing and hiding panels (e.g. Null Search Swapper, Link Switcher).&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2016 21:32:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241982#M15025</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-08-21T21:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241983#M15026</link>
      <description>&lt;P&gt;OK I've taken a few stabs at this and so far no luck.&lt;/P&gt;

&lt;P&gt;Here is what I have.   When the radio button gets changed to Yes, the panel doesn't appear.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;input type="radio" token="showhelp" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Show Help:&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;No&amp;lt;/default&amp;gt;
      &amp;lt;choice value="No"&amp;gt;No&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="Yes"&amp;gt;Yes&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;

  &amp;lt;/fieldset&amp;gt;


  &amp;lt;panel depends="$showhelp$"&amp;gt;
    &amp;lt;label&amp;gt;Dashboard Help&amp;lt;/label&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;html&amp;gt;
            &amp;lt;h1&amp;gt;
                HTML Panels
            &amp;lt;/h1&amp;gt;
            &amp;lt;p&amp;gt;Easily add content to clarify use of a dashboard.&amp;lt;/p&amp;gt;
        &amp;lt;/html&amp;gt;
    &amp;lt;/row&amp;gt;
  &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 18:27:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241983#M15026</guid>
      <dc:creator>dbcase</dc:creator>
      <dc:date>2016-08-22T18:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241984#M15027</link>
      <description>&lt;P&gt;There are several issues with your attempt:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Your token &lt;CODE&gt;$showhelp$&lt;/CODE&gt; would be set at any given time, so the &lt;CODE&gt;depends&lt;/CODE&gt; will always show the panel&lt;/LI&gt;
&lt;LI&gt;A panel doesn't have a label child element&lt;/LI&gt;
&lt;LI&gt;Your row element is inside the panel, it should be the other way 'round&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;I've added a working example to the answer.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 18:41:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241984#M15027</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2016-08-22T18:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241985#M15028</link>
      <description>&lt;P&gt;Hi Martin!&lt;/P&gt;

&lt;P&gt;Many thanks!!!  That did the trick!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 18:47:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241985#M15028</guid>
      <dc:creator>dbcase</dc:creator>
      <dc:date>2016-08-22T18:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add a help panel to a dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241986#M15029</link>
      <description>&lt;P&gt;This great. Very simple to use. A lot eaiser than all the js versions out there!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 19:40:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Add-a-help-panel-to-a-dashboard/m-p/241986#M15029</guid>
      <dc:creator>dkrichards16</dc:creator>
      <dc:date>2019-02-18T19:40:09Z</dc:date>
    </item>
  </channel>
</rss>

