<?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: Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3 in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602747#M49504</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/62276"&gt;@ssroyer&lt;/a&gt;&amp;nbsp;- I felt like it used to work but it's not working anymore.&lt;/P&gt;&lt;P&gt;Surely, I gave this answer for the multi-select token in 2019, not sure which Splunk version.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/How-to-set-multiple-values-for-a-multi-select-input/m-p/436125" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/How-to-set-multiple-values-for-a-multi-select-input/m-p/436125&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now your best guess is to use JavaScript to manipulate tokens -&amp;nbsp;&lt;A href="https://dev.splunk.com/enterprise/docs/developapps/visualizedata/simplexmlextensions/tokenmanipulation/" target="_blank"&gt;https://dev.splunk.com/enterprise/docs/developapps/visualizedata/simplexmlextensions/tokenmanipulation/&lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Look for two main things, if you have never explored Splunk JS for tokens:&lt;UL&gt;&lt;LI&gt;token -&amp;gt; on change event (similar to &amp;lt;change&amp;gt; from XML)&lt;/LI&gt;&lt;LI&gt;defaultTokenModel.set&lt;/LI&gt;&lt;LI&gt;Make sure to set both defaultTokenModel and submittedTokenModel.&lt;/LI&gt;&lt;LI&gt;submittedTokenModel&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jun 2022 08:14:47 GMT</pubDate>
    <dc:creator>VatsalJagani</dc:creator>
    <dc:date>2022-06-22T08:14:47Z</dc:date>
    <item>
      <title>Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602439#M49495</link>
      <description>&lt;P&gt;I have multiple dropdowns with numerous (some 40+) selections per dropdown. What I would like to do is create a "Common KPI" dropdown with 3 choices to drive selections in the other dropdowns. I can make this work for a single value but not when there are multi-select values.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Common KPI dropdown - Choice "1" would select the following:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dropdown 2 selections: Apple, Banana&amp;nbsp;&lt;BR /&gt;Dropdown 3 selection: Golf&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ssroyer_0-1655744486285.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20181i0526EAC40BCDEC54/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ssroyer_0-1655744486285.png" alt="ssroyer_0-1655744486285.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Common KPI dropdown - Choice "2" would select the following:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Dropdown 2 selection: Charlie&lt;BR /&gt;Dropdown 3 selections: Echo, Foxtrot, Hotel&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ssroyer_1-1655744558265.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20182iC0C38698286E4205/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ssroyer_1-1655744558265.png" alt="ssroyer_1-1655744558265.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 1&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;1&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="2"&amp;gt;2&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="bar"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 2&amp;lt;/label&amp;gt;
      &amp;lt;choice value="a"&amp;gt;Alpha&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="b"&amp;gt;Bravo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="c"&amp;gt;Charlie&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="d"&amp;gt;Delta&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="foo"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 3&amp;lt;/label&amp;gt;
      &amp;lt;choice value="e"&amp;gt;Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="f"&amp;gt;Foxtrot&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="g"&amp;gt;Golf&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="h"&amp;gt;Hotel&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 17:20:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602439#M49495</guid>
      <dc:creator>ssroyer</dc:creator>
      <dc:date>2022-06-20T17:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602463#M49497</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/62276"&gt;@ssroyer&lt;/a&gt;&amp;nbsp;- You can have a common KPI input in simple XML like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Common KPI Dropdown 1&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;Alpha - Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="2"&amp;gt;Delta - Hotel&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Alpha - Echo"&amp;gt;
          &amp;lt;set token="bar"&amp;gt;Alpha&amp;lt;/set&amp;gt;
          &amp;lt;set token="foo"&amp;gt;Echo&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Delta - Hotel"&amp;gt;
          &amp;lt;set token="bar"&amp;gt;Delta&amp;lt;/set&amp;gt;
          &amp;lt;set token="foo"&amp;gt;Hotel&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="bar"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 2&amp;lt;/label&amp;gt;
      &amp;lt;choice value="a"&amp;gt;Alpha&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="b"&amp;gt;Bravo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="c"&amp;gt;Charlie&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="d"&amp;gt;Delta&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="foo"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 3&amp;lt;/label&amp;gt;
      &amp;lt;choice value="e"&amp;gt;Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="f"&amp;gt;Foxtrot&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="g"&amp;gt;Golf&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="h"&amp;gt;Hotel&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI, you can use &lt;STRONG&gt;&amp;lt;eval&amp;gt;&lt;/STRONG&gt; instead of &amp;lt;set&amp;gt;, if you have dynamic values instead of static values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 18:48:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602463#M49497</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2022-06-20T18:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602631#M49501</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/93915"&gt;@VatsalJagani&lt;/a&gt;&amp;nbsp;Thank you for the response. Your suggestion is working when only one value per dropdown needs to be selected. The part I'm having trouble with is when I need to select two or more options per dropdown. Example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Common KPI - Option 1&lt;BR /&gt;Dropdown 1 - Alpha and Bravo &amp;lt;---- how do I get both options to set using the same token?&amp;nbsp;&lt;BR /&gt;Dropdown 2 - Echo&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 13:53:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602631#M49501</guid>
      <dc:creator>ssroyer</dc:creator>
      <dc:date>2022-06-21T13:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602636#M49502</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/62276"&gt;@ssroyer&lt;/a&gt;&amp;nbsp;- The multiselect inputs generally have the following 5 properties defined, which tell what will be the value of the input.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&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;"&amp;lt;/valuePrefix&amp;gt;
            &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
            &amp;lt;delimiter&amp;gt;, &amp;lt;/delimiter&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I've just assumed the values here, but you could put them as per your use-cases.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then you can update your inputs to something like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Common KPI Dropdown 1&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;Alpha-Bravo - Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="2"&amp;gt;Delta - Hotel&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Alpha-Bravo - Echo"&amp;gt;
          &amp;lt;set token="bar"&amp;gt;("Alpha", "Bravo")&amp;lt;/set&amp;gt;
          &amp;lt;set token="foo"&amp;gt;Echo&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Delta - Hotel"&amp;gt;
          &amp;lt;set token="bar"&amp;gt;Delta&amp;lt;/set&amp;gt;
          &amp;lt;set token="foo"&amp;gt;Hotel&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="bar"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 2&amp;lt;/label&amp;gt;
      &amp;lt;choice value="a"&amp;gt;Alpha&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="b"&amp;gt;Bravo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="c"&amp;gt;Charlie&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="d"&amp;gt;Delta&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&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;"&amp;lt;/valuePrefix&amp;gt;
      &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
      &amp;lt;delimiter&amp;gt;, &amp;lt;/delimiter&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="foo"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 3&amp;lt;/label&amp;gt;
      &amp;lt;choice value="e"&amp;gt;Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="f"&amp;gt;Foxtrot&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="g"&amp;gt;Golf&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="h"&amp;gt;Hotel&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could repeat the same thing if you want for Dropdown 3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2022 14:05:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602636#M49502</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2022-06-21T14:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602644#M49503</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/93915"&gt;@VatsalJagani&lt;/a&gt;&amp;nbsp;I am using a metrics index with mstats. I don't have prefix, suffix, or delimiters set in my multiselect. However, even when I do set them, in your example if I select "Alpha-Bravo - Echo" the selection in Dropdown 2 is all together ("Alpha", "Bravo") vs. two independent selections.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ssroyer_0-1655821678147.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20204iEDE0B60A67CEB9DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ssroyer_0-1655821678147.png" alt="ssroyer_0-1655821678147.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;Dependent Dropdown&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Common KPI Dropdown 1&amp;lt;/label&amp;gt;
      &amp;lt;choice value="1"&amp;gt;Alpha-Bravo - Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="2"&amp;gt;Delta - Hotel&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;&amp;lt;/default&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition label="Alpha-Bravo - Echo"&amp;gt;
          &amp;lt;set token="form.bar"&amp;gt;("Alpha", "Bravo")&amp;lt;/set&amp;gt;
          &amp;lt;set token="form.foo"&amp;gt;Echo&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
        &amp;lt;condition label="Delta - Hotel"&amp;gt;
          &amp;lt;set token="form.bar"&amp;gt;Delta&amp;lt;/set&amp;gt;
          &amp;lt;set token="form.foo"&amp;gt;Hotel&amp;lt;/set&amp;gt;
        &amp;lt;/condition&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="bar"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 2&amp;lt;/label&amp;gt;
      &amp;lt;choice value="a"&amp;gt;Alpha&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="b"&amp;gt;Bravo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="c"&amp;gt;Charlie&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="d"&amp;gt;Delta&amp;lt;/choice&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;"&amp;lt;/valuePrefix&amp;gt;
      &amp;lt;valueSuffix&amp;gt;"&amp;lt;/valueSuffix&amp;gt;
      &amp;lt;delimiter&amp;gt;, &amp;lt;/delimiter&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="multiselect" searchWhenChanged="true" token="foo"&amp;gt;
      &amp;lt;label&amp;gt;Dropdown 3&amp;lt;/label&amp;gt;
      &amp;lt;choice value="e"&amp;gt;Echo&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="f"&amp;gt;Foxtrot&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="g"&amp;gt;Golf&amp;lt;/choice&amp;gt;
      &amp;lt;choice value="h"&amp;gt;Hotel&amp;lt;/choice&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Jun 2022 14:28:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602644#M49503</guid>
      <dc:creator>ssroyer</dc:creator>
      <dc:date>2022-06-21T14:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dependent Dropdowns - Single selection from Dropdown 1 to select multiple values in Dropdown 2 and 3</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602747#M49504</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/62276"&gt;@ssroyer&lt;/a&gt;&amp;nbsp;- I felt like it used to work but it's not working anymore.&lt;/P&gt;&lt;P&gt;Surely, I gave this answer for the multi-select token in 2019, not sure which Splunk version.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/How-to-set-multiple-values-for-a-multi-select-input/m-p/436125" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/How-to-set-multiple-values-for-a-multi-select-input/m-p/436125&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now your best guess is to use JavaScript to manipulate tokens -&amp;nbsp;&lt;A href="https://dev.splunk.com/enterprise/docs/developapps/visualizedata/simplexmlextensions/tokenmanipulation/" target="_blank"&gt;https://dev.splunk.com/enterprise/docs/developapps/visualizedata/simplexmlextensions/tokenmanipulation/&lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Look for two main things, if you have never explored Splunk JS for tokens:&lt;UL&gt;&lt;LI&gt;token -&amp;gt; on change event (similar to &amp;lt;change&amp;gt; from XML)&lt;/LI&gt;&lt;LI&gt;defaultTokenModel.set&lt;/LI&gt;&lt;LI&gt;Make sure to set both defaultTokenModel and submittedTokenModel.&lt;/LI&gt;&lt;LI&gt;submittedTokenModel&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jun 2022 08:14:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dependent-Dropdowns-Single-selection-from-Dropdown-1-to-select/m-p/602747#M49504</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2022-06-22T08:14:47Z</dc:date>
    </item>
  </channel>
</rss>

