<?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 pass selected checkbox values to drilldown target? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253784#M15863</link>
    <description>&lt;P&gt;No luck so far &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;
I'd wish we'd have some sort of session storage to share configured values... &lt;/P&gt;</description>
    <pubDate>Tue, 28 Feb 2017 07:23:42 GMT</pubDate>
    <dc:creator>krdo</dc:creator>
    <dc:date>2017-02-28T07:23:42Z</dc:date>
    <item>
      <title>How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253772#M15851</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a dashboard with a checkbox input allowing the user to select multiple values. Now I want to pass the selected values to a drilldown target (so that the checkboxes are automatically selected).&lt;/P&gt;

&lt;P&gt;I've created two dashboards (both use the same code, only the name/drilldown target has been changed):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Dashboard1&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="timeRange" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-60m@m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="checkbox" token="sourcetypes" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Sourcetypes&amp;lt;/label&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;search index="_internal" component="*" | stats count by sourcetype | fields sourcetype  | eval label=replace(sourcetype, "[^a-zA-Z0-9]+", " ") | rename sourcetype as value&amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;$timeRange.earliest$&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;$timeRange.latest$&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;label&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;value&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;prefix&amp;gt;(&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;)&amp;lt;/suffix&amp;gt;
      &amp;lt;valuePrefix&amp;gt;sourcetype="&amp;lt;/valuePrefix&amp;gt;
      &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
      &amp;lt;delimiter&amp;gt; OR &amp;lt;/delimiter&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row depends="$sourcetypes$"&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index="_internal" $sourcetypes$ | stats count by component | sort -count | rename component as Component count as Count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$timeRange.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$timeRange.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;row&amp;lt;/option&amp;gt;
        &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;link&amp;gt;dashboard2?form.sourcetypes=$form.sourcetypes$&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&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;Now when I click on a row in the table, the second dashboard opens but the input values are not selected.&lt;BR /&gt;
Splunk creates a drilldown URL similar to this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;http://localhost:8000/en-GB/app/search/dashboard1?form.sourcetypes=splunk_web_service%2Csplunkd
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Note there is only one query parameter named &lt;EM&gt;form.sourcetypes&lt;/EM&gt; with the decoded value &lt;EM&gt;splunk_web_service,splunkd&lt;/EM&gt;&lt;BR /&gt;
When I select the values on the dashboard the current URL changes to something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;http://localhost:8000/en-GB/app/search/dashboard1?&amp;amp;form.sourcetypes=splunk_web_service&amp;amp;form.sourcetypes=splunkd
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;As you can see there are two query parameters, one for each value (&lt;EM&gt;splunk_web_service&lt;/EM&gt; and &lt;EM&gt;splunkd&lt;/EM&gt;)&lt;/P&gt;

&lt;P&gt;Is there another way to specify the tokens in the drilldown link? Or is it possible to instruct the checkbox input to use the single value version when the dasboard is loaded?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 07:26:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253772#M15851</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2020-09-29T07:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253773#M15852</link>
      <description>&lt;P&gt;try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;link&amp;gt;

    &amp;lt;![CDATA[dashboard2?form.sourcetypes=$row.sourcetypes$]]&amp;gt;

    &amp;lt;/link&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Oct 2015 15:11:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253773#M15852</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2015-10-05T15:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253774#M15853</link>
      <description>&lt;P&gt;This doesn't work, &lt;CODE&gt;$row.sourcetypes$&lt;/CODE&gt; isn't defined and therefore Splunk creates a URL similar to this: &lt;CODE&gt;&lt;A href="http://localhost:8000/en-GB/app/search/dashboard2?form.sourcetypes=%24row.sourcetypes%24" target="test_blank"&gt;http://localhost:8000/en-GB/app/search/dashboard2?form.sourcetypes=%24row.sourcetypes%24&lt;/A&gt;&lt;/CODE&gt; (decoded value is &lt;CODE&gt;$row.sourcetypes$&lt;/CODE&gt;).&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 05:51:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253774#M15853</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2015-10-06T05:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253775#M15854</link>
      <description>&lt;P&gt;when you want to click on table and move on new dashboards :&lt;/P&gt;

&lt;P&gt;you want to get sourcetype or component?&lt;/P&gt;

&lt;P&gt;if it's component you can try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;![CDATA[dashboard2?form.sourcetypes=$click.value2$]]&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;![CDATA[dashboard2?form.sourcetypes=$row.Component$]]&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 06 Oct 2015 08:09:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253775#M15854</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2015-10-06T08:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253776#M15855</link>
      <description>&lt;P&gt;I think we are taking about different things here; I don't want to pass a value from the row to the drilldown target. I want to pass the current state of checkbox input (the $form.sourcetypes$ token) to the drilldown target.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 08:22:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253776#M15855</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2015-10-06T08:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253777#M15856</link>
      <description>&lt;P&gt;you want to pass multiple selection from checkbox to the newest dashboards, it is?&lt;BR /&gt;
i'm testing many function with your code.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 08:32:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253777#M15856</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2015-10-06T08:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253778#M15857</link>
      <description>&lt;P&gt;Yes exactly. The user selects multiple values by checking the checkboxes. The user then clicks on a row (drilldown). The same checkboxes should be selected on the new dashboard. Currently that doesn't work.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 09:37:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253778#M15857</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2015-10-06T09:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253779#M15858</link>
      <description>&lt;P&gt;i solved it with javascript&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;var loc=window.location;
var pathName=loc.pathname.substring(0,loc.pathname.lastIndexOf('/')+1);
var params = window.location.search.substring(1).split("?");

var uri= loc.href.substring(0,loc.href.length -((loc.pathname + loc.search + loc.hash ).length -pathName.length));



$("#nextdash").on('click',function(){
                var link=uri+"dashboard2?"+params;


  window.open(link,"_blank");
                 });


and your xml can be like this now :
 &amp;lt;form script="js_file.js"&amp;gt;
   &amp;lt;label&amp;gt;Dashboard1&amp;lt;/label&amp;gt;
   &amp;lt;fieldset submitButton="false"&amp;gt;
     &amp;lt;input type="time" token="timeRange" searchWhenChanged="true"&amp;gt;
       &amp;lt;label&amp;gt;Time Range&amp;lt;/label&amp;gt;
       &amp;lt;default&amp;gt;
         &amp;lt;earliest&amp;gt;-60m@m&amp;lt;/earliest&amp;gt;
         &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
       &amp;lt;/default&amp;gt;
     &amp;lt;/input&amp;gt;
     &amp;lt;input type="checkbox" token="sourcetypes" searchWhenChanged="true"&amp;gt;
       &amp;lt;label&amp;gt;Sourcetypes&amp;lt;/label&amp;gt;
       &amp;lt;search&amp;gt;
         &amp;lt;query&amp;gt;search index="_internal" component="*" | stats count by sourcetype | fields sourcetype  | eval label=replace(sourcetype, "[^a-zA-Z0-9]+", " ") | rename sourcetype as value&amp;lt;/query&amp;gt;
         &amp;lt;earliest&amp;gt;$timeRange.earliest$&amp;lt;/earliest&amp;gt;
         &amp;lt;latest&amp;gt;$timeRange.latest$&amp;lt;/latest&amp;gt;
       &amp;lt;/search&amp;gt;
       &amp;lt;fieldForLabel&amp;gt;label&amp;lt;/fieldForLabel&amp;gt;
       &amp;lt;fieldForValue&amp;gt;value&amp;lt;/fieldForValue&amp;gt;
       &amp;lt;prefix&amp;gt;(&amp;lt;/prefix&amp;gt;
       &amp;lt;suffix&amp;gt;)&amp;lt;/suffix&amp;gt;
       &amp;lt;valuePrefix&amp;gt;sourcetype="&amp;lt;/valuePrefix&amp;gt;
       &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
       &amp;lt;delimiter&amp;gt; OR &amp;lt;/delimiter&amp;gt;
     &amp;lt;/input&amp;gt;
   &amp;lt;/fieldset&amp;gt;
   &amp;lt;row depends="$sourcetypes$"&amp;gt;
     &amp;lt;panel&amp;gt;
       &amp;lt;table id="nextdash"&amp;gt;
         &amp;lt;search&amp;gt;
           &amp;lt;query&amp;gt;index="_internal" $sourcetypes$ | stats count by component | sort -count | rename component as Component count as Count&amp;lt;/query&amp;gt;
           &amp;lt;earliest&amp;gt;$timeRange.earliest$&amp;lt;/earliest&amp;gt;
           &amp;lt;latest&amp;gt;$timeRange.latest$&amp;lt;/latest&amp;gt;
         &amp;lt;/search&amp;gt;
         &amp;lt;option name="drilldown"&amp;gt;row&amp;lt;/option&amp;gt;
         &amp;lt;option name="count"&amp;gt;10&amp;lt;/option&amp;gt;
         &amp;lt;drilldown&amp;gt;
           &amp;lt;condition fields="*"&amp;gt;&amp;lt;/condition&amp;gt;
         &amp;lt;/drilldown&amp;gt;
         &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
         &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
         &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
       &amp;lt;/table&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, 06 Oct 2015 11:01:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253779#M15858</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2015-10-06T11:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253780#M15859</link>
      <description>&lt;P&gt;hi krdo, have you solved the problem?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2015 13:00:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253780#M15859</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2015-10-08T13:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253781#M15860</link>
      <description>&lt;P&gt;Another way to solve the problem is the following custom JavaScript behavior in the &lt;EM&gt;target&lt;/EM&gt; dashboard (sfatnass's answer shows how to solve the problem in the &lt;EM&gt;source&lt;/EM&gt; dashboard).&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;require([
    'underscore',
    "splunkjs/mvc",
    "splunkjs/mvc/simplexml/ready!"
    ], function(_, mvc) {

  function MultiselectBehavior()
  {
    /* Find all multiselect inputs. */
    var components = mvc.Components.getInstances().filter(function(item) { return item.options &amp;amp;&amp;amp; (item.options.type=='multiselect' || item.options.type=='checkbox'); });

    /* Get default tokens. */
    var tokens = mvc.Components.get("default");

    _(components).each(function(component)
    {
      // Split single values into multiple values:
      //   'Value1,Value2' =&amp;gt; ['Value1', 'Value2']
      var tokenName = 'form.' + component.settings.get('token');
      var tokenValue = tokens.get(tokenName);
      if(typeof tokenValue === 'string')
      {
        tokens.set(tokenName, tokenValue.split(","));
      }

      console.log("Multiselect behavior enabled for '" + component.options.label + "'.");

    });
  }

  MultiselectBehavior();

});
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Oct 2015 13:13:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253781#M15860</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2015-10-08T13:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253782#M15861</link>
      <description>&lt;P&gt;I downvoted this post because this answer may work, but is more complicated than the one-line (plus a js file) fix farther down this page.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 20:17:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253782#M15861</guid>
      <dc:creator>nickkin</dc:creator>
      <dc:date>2017-02-27T20:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253783#M15862</link>
      <description>&lt;P&gt;I downvoted this post because does not solve the problem with splunk expecting every selected value in a multi-value field to be specified in a separate (duplicate name) url parameter&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 20:18:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253783#M15862</guid>
      <dc:creator>nickkin</dc:creator>
      <dc:date>2017-02-27T20:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253784#M15863</link>
      <description>&lt;P&gt;No luck so far &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;
I'd wish we'd have some sort of session storage to share configured values... &lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 07:23:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253784#M15863</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2017-02-28T07:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253785#M15864</link>
      <description>&lt;P&gt;FYI the (now) upvoted answer works regardless of source dashboard and automatically splits combined parameters in the target.  It is a much more elegant solution and requires nothing but a simple script= reference to automatically take effect for any control in the target dashboard with no need to modify the drilldown logic to pass multi-value parameters through. &lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 07:32:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253785#M15864</guid>
      <dc:creator>nickkin</dc:creator>
      <dc:date>2017-02-28T07:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253786#M15865</link>
      <description>&lt;P&gt;I am also facing same issue. if you got the answer please share it.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 09:09:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253786#M15865</guid>
      <dc:creator>ruchigupta</dc:creator>
      <dc:date>2017-06-29T09:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253787#M15866</link>
      <description>&lt;P&gt;I've accepted my own answer (which feels wrong, but nickkin pointed out why) which is what we are using for now. Simply add the script to the target dashboard.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 09:21:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253787#M15866</guid>
      <dc:creator>krdo</dc:creator>
      <dc:date>2017-06-29T09:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass selected checkbox values to drilldown target?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253788#M15867</link>
      <description>&lt;P&gt;I have documented a &lt;CODE&gt;workaround to use an independent search&lt;/CODE&gt; to set tokens based on option/s selected in the checkbox. It uses only Simple XML Dashboard, &lt;STRONG&gt;NO JAVASCRIPT CHANGES REQUIRED &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt; &lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/681330/can-i-hideunhide-specific-text-boxes-using-a-singl.html?childToView=682360#answer-682360"&gt;https://answers.splunk.com/answers/681330/can-i-hideunhide-specific-text-boxes-using-a-singl.html?childToView=682360#answer-682360&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Please try out and confirm!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 09:32:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-selected-checkbox-values-to-drilldown-target/m-p/253788#M15867</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-08-21T09:32:58Z</dc:date>
    </item>
  </channel>
</rss>

