<?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: Different text form inputs for each panel of a dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145175#M8793</link>
    <description>&lt;P&gt;Great, I'm on version 6.1 and it works fine! Thanks a lot.&lt;/P&gt;

&lt;P&gt;Is it also possible to create a submit button for every panel? I tried to move the&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;fieldset submitButton="true"&amp;gt; ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to the panel level, but this caused an error.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Jul 2014 14:49:37 GMT</pubDate>
    <dc:creator>HeinzWaescher</dc:creator>
    <dc:date>2014-07-16T14:49:37Z</dc:date>
    <item>
      <title>Different text form inputs for each panel of a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145173#M8791</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;is it possible to create a dashboard and define different input elements for each panel? At the moment all panels in my dashboard react with the input elements at the top. I didn't find any information in docs how to achieve this.&lt;/P&gt;

&lt;P&gt;BR&lt;/P&gt;

&lt;P&gt;Heinz&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 12:15:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145173#M8791</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-07-16T12:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Different text form inputs for each panel of a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145174#M8792</link>
      <description>&lt;P&gt;Yes, this can be done easily in simple xml, but I believe only with Splunk 6.1 and above.  There is an example in the &lt;A href="http://apps.splunk.com/app/1603/"&gt;Splunk 6 Dashboard Examples app&lt;/A&gt;, it's called "Form Elements Within Panels".  Here is the example code from that app:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;Form Elements Within Panels&amp;lt;/label&amp;gt;
    &amp;lt;description&amp;gt;Example of placing form elements within a panel.&amp;lt;/description&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;panel&amp;gt;
            &amp;lt;input type="dropdown" token="sourcetype1" searchWhenChanged="true"&amp;gt;
                &amp;lt;label&amp;gt;Source types for _Internal All&amp;lt;/label&amp;gt;
                &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunkd"&amp;gt;splunkd&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunk_web_access"&amp;gt;splunk_web_access&amp;lt;/choice&amp;gt;
                &amp;lt;default&amp;gt;splunkd&amp;lt;/default&amp;gt;
            &amp;lt;/input&amp;gt;
            &amp;lt;chart&amp;gt;
                &amp;lt;title&amp;gt;_Internal All&amp;lt;/title&amp;gt;
                &amp;lt;searchString&amp;gt;index=_internal sourcetype="$sourcetype1$" | timechart count&amp;lt;/searchString&amp;gt;
                &amp;lt;earliestTime&amp;gt;-4h@h&amp;lt;/earliestTime&amp;gt;
                &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
                &amp;lt;option name="charting.chart"&amp;gt;line&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.legend.placement"&amp;gt;none&amp;lt;/option&amp;gt;
            &amp;lt;/chart&amp;gt;
        &amp;lt;/panel&amp;gt;
        &amp;lt;panel&amp;gt;
            &amp;lt;input type="radio" token="sourcetype2" searchWhenChanged="true"&amp;gt;
                &amp;lt;label&amp;gt;Source types for _Internal Top 3&amp;lt;/label&amp;gt;
                &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunkd"&amp;gt;splunkd&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunk_web_access"&amp;gt;splunk_web_access&amp;lt;/choice&amp;gt;
                &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
            &amp;lt;/input&amp;gt;
            &amp;lt;event&amp;gt;
                &amp;lt;title&amp;gt;_Internal Top 3&amp;lt;/title&amp;gt;
                &amp;lt;searchString&amp;gt;index=_internal sourcetype="$sourcetype2$" | head 3&amp;lt;/searchString&amp;gt;
                &amp;lt;earliestTime&amp;gt;-4h@h&amp;lt;/earliestTime&amp;gt;
                &amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
                &amp;lt;option name="maxLines"&amp;gt;5&amp;lt;/option&amp;gt;
                &amp;lt;option name="raw.drilldown"&amp;gt;full&amp;lt;/option&amp;gt;
                &amp;lt;option name="rowNumbers"&amp;gt;0&amp;lt;/option&amp;gt;
                &amp;lt;option name="type"&amp;gt;list&amp;lt;/option&amp;gt;
                &amp;lt;option name="count"&amp;gt;5&amp;lt;/option&amp;gt;
            &amp;lt;/event&amp;gt;
        &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you're on version of Splunk older than 6.1, I think you'll have to use advanced XML.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 12:52:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145174#M8792</guid>
      <dc:creator>wpreston</dc:creator>
      <dc:date>2014-07-16T12:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Different text form inputs for each panel of a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145175#M8793</link>
      <description>&lt;P&gt;Great, I'm on version 6.1 and it works fine! Thanks a lot.&lt;/P&gt;

&lt;P&gt;Is it also possible to create a submit button for every panel? I tried to move the&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;fieldset submitButton="true"&amp;gt; ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to the panel level, but this caused an error.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2014 14:49:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145175#M8793</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2014-07-16T14:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Different text form inputs for each panel of a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145176#M8794</link>
      <description>&lt;P&gt;whoa I didn't know panels could have input options; exactly the answer I was looking for. Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 20:45:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145176#M8794</guid>
      <dc:creator>bhgupta</dc:creator>
      <dc:date>2019-04-03T20:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Different text form inputs for each panel of a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145177#M8795</link>
      <description>&lt;P&gt;This form example above no longer passes validation on Splunk 8.0.1 and maybe earlier, however one can copy the latest example from within the "&lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Dashboard Examples App&lt;/A&gt;".&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
    &amp;lt;label&amp;gt;Form Elements Within Panels&amp;lt;/label&amp;gt;
    &amp;lt;description&amp;gt;Dashboard Examples: Example of placing form elements within a panel.&amp;lt;/description&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;panel&amp;gt;
            &amp;lt;input type="dropdown" token="sourcetype1" searchWhenChanged="true"&amp;gt;
                &amp;lt;label&amp;gt;Source types for _Internal All&amp;lt;/label&amp;gt;
                &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunkd"&amp;gt;splunkd&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunk_web_access"&amp;gt;splunk_web_access&amp;lt;/choice&amp;gt;
                &amp;lt;default&amp;gt;splunkd&amp;lt;/default&amp;gt;
            &amp;lt;/input&amp;gt;
            &amp;lt;chart&amp;gt;
                &amp;lt;title&amp;gt;_Internal All&amp;lt;/title&amp;gt;
                &amp;lt;search&amp;gt;
                    &amp;lt;query&amp;gt;index=_internal sourcetype="$sourcetype1$" | timechart count&amp;lt;/query&amp;gt;
                    &amp;lt;earliest&amp;gt;-4h@h&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;line&amp;lt;/option&amp;gt;
                &amp;lt;option name="charting.legend.placement"&amp;gt;none&amp;lt;/option&amp;gt;
            &amp;lt;/chart&amp;gt;
        &amp;lt;/panel&amp;gt;
        &amp;lt;panel&amp;gt;
            &amp;lt;input type="radio" token="sourcetype2" searchWhenChanged="true"&amp;gt;
                &amp;lt;label&amp;gt;Source types for _Internal Top 3&amp;lt;/label&amp;gt;
                &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunkd"&amp;gt;splunkd&amp;lt;/choice&amp;gt;
                &amp;lt;choice value="splunk_web_access"&amp;gt;splunk_web_access&amp;lt;/choice&amp;gt;
                &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
            &amp;lt;/input&amp;gt;
            &amp;lt;event&amp;gt;
                &amp;lt;title&amp;gt;_Internal Top 3&amp;lt;/title&amp;gt;
                &amp;lt;search&amp;gt;
                    &amp;lt;query&amp;gt;index=_internal sourcetype="$sourcetype2$" | head 3&amp;lt;/query&amp;gt;
                    &amp;lt;earliest&amp;gt;-4h@h&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="maxLines"&amp;gt;5&amp;lt;/option&amp;gt;
                &amp;lt;option name="raw.drilldown"&amp;gt;full&amp;lt;/option&amp;gt;
                &amp;lt;option name="rowNumbers"&amp;gt;0&amp;lt;/option&amp;gt;
                &amp;lt;option name="type"&amp;gt;list&amp;lt;/option&amp;gt;
                &amp;lt;option name="count"&amp;gt;5&amp;lt;/option&amp;gt;
            &amp;lt;/event&amp;gt;
        &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 05:57:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Different-text-form-inputs-for-each-panel-of-a-dashboard/m-p/145177#M8795</guid>
      <dc:creator>bwlm</dc:creator>
      <dc:date>2020-04-23T05:57:00Z</dc:date>
    </item>
  </channel>
</rss>

