<?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: Why is my dynamic dropdown not updating using selectFirstChoice and token unset? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314214#M20135</link>
    <description>&lt;P&gt;I've replaced my inputs with your code and the behavior remains the same. Everything appears to be working just fine until I reload my browser window. When I do that the previous value for token_B remains when the value for Data Model is changed. The dropdown is updated, it only displays one value aside from the currently populated value.&lt;/P&gt;

&lt;P&gt;I want to hide this input panel because it should not require interaction, I'll use a depends token but one that isn't ever set so it never shows.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Apr 2017 12:23:19 GMT</pubDate>
    <dc:creator>dflodstrom</dc:creator>
    <dc:date>2017-04-07T12:23:19Z</dc:date>
    <item>
      <title>Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314210#M20131</link>
      <description>&lt;P&gt;I have a dashboard with dynamically populated dropdown inputs.  Selecting input A sets token_A that the input B relies on for its populating search. I used  +  to unset token_B when the selection in input A changes and this works just fine unless I reload the browser after I've made my selection; if I do this token_B resets but the first option is not selected. &lt;/P&gt;

&lt;P&gt;Here is input A (A list of available Datamodels):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="data_model" searchWhenChanged="false"&amp;gt;
      &amp;lt;label&amp;gt;Data Model&amp;lt;/label&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;| rest /services/datamodel/model | search eai:acl.app!=search | table displayName title eai:acl.app | sort displayName&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;displayName&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;title&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;unset token="form.root_object_name"&amp;gt;&amp;lt;/unset&amp;gt;
      &amp;lt;/change&amp;gt;
    &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here is input B (Datamodel Root Object Name):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="root_object_name" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Root Object Name&amp;lt;/label&amp;gt;
      &amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;object_name&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;object&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;| datamodel $data_model$ | spath | rename "objects{}.displayName" as object_name "objects{}.objectName" as object | table object | mvexpand object | head 1&amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I've read questions that lead me to a solution but it doesn't seem to work when I reload my dashboard. I'm using Splunk 6.5.2.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 13:33:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314210#M20131</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2020-09-29T13:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314211#M20132</link>
      <description>&lt;P&gt;Instead of using unset code on change event and then setting of token in second input, you can enable &lt;STRONG&gt;searchWhenChanged&lt;/STRONG&gt; in &lt;STRONG&gt;data_model&lt;/STRONG&gt; input&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;input type="dropdown" token="data_model" searchWhenChanged="true"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And &lt;STRONG&gt;remove&lt;/STRONG&gt; the unset token code in change event and the value of second dropdown will not reset on refresh.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;change&amp;gt;
     &amp;lt;unset token="form.root_object_name"&amp;gt;&amp;lt;/unset&amp;gt;
   &amp;lt;/change&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Apr 2017 21:00:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314211#M20132</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-06T21:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314212#M20133</link>
      <description>&lt;P&gt;Does that work for you? The behavior is similar when I do this. If I navigate to this dashboard for the first time or clear the URL so none of the token values are present then the dashboard appears to work as it should. Now when I reload my browser the last value for token_B seems to be stuck.  If I change the value of token_A the value of token_B is not updated and the dropdown is still populated with the previous selection. I can change it but again, selecting a new value for token_A doesn't update token_B.&lt;/P&gt;

&lt;P&gt;I went down this road before attempting to use unset but I did change my XML just to confirm. If this is working for you then it might be a browser issue. I'll try something other than Chrome.&lt;/P&gt;

&lt;P&gt;I'd like this to work without any user input for token_B so I can hide that input selection ... perhaps there is a more elegant way to do that an I should be asking that.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 13:34:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314212#M20133</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2020-09-29T13:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314213#M20134</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/152503"&gt;@dflodstrom&lt;/a&gt;... following works for me (I have taken out one condition in REST query to fetch all Data Models for testing).&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="data_model" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Data Model&amp;lt;/label&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;| rest /services/datamodel/model | table displayName title eai:acl.app | sort displayName&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;displayName&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;title&amp;lt;/fieldForValue&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="root_object_name" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Root Object Name&amp;lt;/label&amp;gt;
      &amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;object_name&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;object&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;| datamodel $data_model$ | spath | rename "objects{}.displayName" as object_name "objects{}.objectName" as object | table object | mvexpand object | head 1&amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The above will not loose previous value for dropdown B on refresh and everything will reset when you clear the querystrings(form variables through browser URL). I don't think output would vary for different browsers.&lt;BR /&gt;
PS: You can use $data_models$ as depends token for dropdown B so that it is hidden when any data_models is not selected.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 13:34:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314213#M20134</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-09-29T13:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314214#M20135</link>
      <description>&lt;P&gt;I've replaced my inputs with your code and the behavior remains the same. Everything appears to be working just fine until I reload my browser window. When I do that the previous value for token_B remains when the value for Data Model is changed. The dropdown is updated, it only displays one value aside from the currently populated value.&lt;/P&gt;

&lt;P&gt;I want to hide this input panel because it should not require interaction, I'll use a depends token but one that isn't ever set so it never shows.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 12:23:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314214#M20135</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2017-04-07T12:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314215#M20136</link>
      <description>&lt;P&gt;If you tested the code in my question you'll see that it functions also, but not when I refresh my browser.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/218751/selectfirstchoice-not-working-in-dynamic-dropdowns.html"&gt;https://answers.splunk.com/answers/218751/selectfirstchoice-not-working-in-dynamic-dropdowns.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 12:57:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314215#M20136</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2017-04-07T12:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314216#M20137</link>
      <description>&lt;P&gt;I'm having the same issue in Firefox as I am in Chrome. If I send someone a link to this dashboard with the tokens already populated token_B won't get updated automatically.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 13:10:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314216#M20137</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2017-04-07T13:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314217#M20138</link>
      <description>&lt;P&gt;Please take a look on this link:&lt;BR /&gt;
Approach A: Two Inputs, One Token&lt;BR /&gt;
&lt;A href="https://www.splunk.com/blog/2017/04/04/build-a-dashboard-with-dynamic-and-editable-inputs.html?linkId=36223180"&gt;https://www.splunk.com/blog/2017/04/04/build-a-dashboard-with-dynamic-and-editable-inputs.html?linkId=36223180&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 14:47:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314217#M20138</guid>
      <dc:creator>isreis</dc:creator>
      <dc:date>2017-04-07T14:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314218#M20139</link>
      <description>&lt;P&gt;I don't see how this is at all relevant to my question.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 14:57:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314218#M20139</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2017-04-07T14:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314219#M20140</link>
      <description>&lt;P&gt;This article provide to 2 samples in who you can use the token. In additional, can support the answers that "niketnila" provid to you.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2727iEAFF522DDD33D86B/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Maybe you can use the 1st token as variable to receive the content to search on the 2nd part of your code. Please check the link below and see if it will works according to your needs.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/441059/how-to-pass-a-token-value-through-to-another-selec.html"&gt;https://answers.splunk.com/answers/441059/how-to-pass-a-token-value-through-to-another-selec.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 22:57:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314219#M20140</guid>
      <dc:creator>isreis</dc:creator>
      <dc:date>2017-04-07T22:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314220#M20141</link>
      <description>&lt;P&gt;I appreciate the assistance but have you tried using the xml in my example? Do you see the behavior I'm talking about? Have you tried your solution and does it behave differently?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 00:07:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314220#M20141</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2017-04-08T00:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314221#M20142</link>
      <description>&lt;P&gt;@dflodstorm... First of all sorry that I was too fixated on value for dropdown B being cleared on refresh and did not pay attention to selectFirstChoice working for the second time onward.&lt;/P&gt;

&lt;P&gt;Since selectFirstChoice will not work after you refresh dashboard, and you are using second dropdown as a point to re-use a value rom your first search in your second search... I would suggest trying the following option instead. &lt;/P&gt;

&lt;P&gt;This uses a search instead of second dropdown. The search &lt;STRONG&gt;preview&lt;/STRONG&gt; event handler will allow you to access search result however &lt;STRONG&gt;only from the first row&lt;/STRONG&gt;. This is a caveat of search preview event handler to return only the first row, which would work  in your favor since you want only the first value selected by default.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;input type="dropdown" token="data_model" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Data Model&amp;lt;/label&amp;gt;
      &amp;lt;selectFirstChoice&amp;gt;true&amp;lt;/selectFirstChoice&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;| rest /services/datamodel/model | table displayName title eai:acl.app | sort displayName | table displayName title &amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;displayName&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;title&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;change&amp;gt;
        &amp;lt;condition&amp;gt;
          &amp;lt;set token="Title"&amp;gt;$value$&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;search&amp;gt;
    &amp;lt;query&amp;gt;| datamodel $Title$ | spath | rename "objects{}.displayName" as object_name "objects{}.objectName" as object | table object_name object | mvexpand object_name | mvexpand object | head 1&amp;lt;/query&amp;gt;
    &amp;lt;preview&amp;gt;
      &amp;lt;condition&amp;gt;
        &amp;lt;set token="Object"&amp;gt;$result.object$&amp;lt;/set&amp;gt;
      &amp;lt;/condition&amp;gt;
    &amp;lt;/preview&amp;gt;
  &amp;lt;/search&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: I have also turned on selectFirstChoice for the first time to provide your dashboard with a default value to start with. You can print tokens $Title$ and $Object$ in your dashboard to test behavior of both during refresh and clearing up of the URL querystring.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 18:46:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314221#M20142</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-08T18:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314222#M20143</link>
      <description>&lt;P&gt;@dflodstorm I am sorry but I did not come up with right solution for you. I have provided an option which should meet your requirement however, it is on a different approach since selectFirstChoice has a limitation for refresh which you have encountered.&lt;/P&gt;

&lt;P&gt;One more possible option with map command works in Splunk search but not in Dashboard. You could have got the title from first search and then used the map command to run the datamodel subsearch for returned results. Unfortunately, while this works in Splunk Search I could not get it to work in dashboard &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/datamodel/model | table displayName title eai:acl.app | sort displayName
| map search=" | datamodel $title$ | spath | rename \"objects{}.displayName\" as object_name \"objects{}.objectName\" as object | table object_name object | mvexpand object_name | mvexpand object | head 1"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 08 Apr 2017 18:54:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314222#M20143</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-08T18:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314223#M20144</link>
      <description>&lt;P&gt;Thanks so much for taking the time to get this working. This is absolutely the work-around I needed. I modified the resulting search to use your new tokens and everything is working as expected. &lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 14:23:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314223#M20144</guid>
      <dc:creator>dflodstrom</dc:creator>
      <dc:date>2017-04-10T14:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314224#M20145</link>
      <description>&lt;P&gt;Glad it worked... one way or the other &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 16:08:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314224#M20145</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-10T16:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314225#M20146</link>
      <description>&lt;P&gt;This worked for me... Thanks niketnilay&lt;/P&gt;</description>
      <pubDate>Fri, 08 Sep 2017 12:49:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/314225#M20146</guid>
      <dc:creator>splunkdivya</dc:creator>
      <dc:date>2017-09-08T12:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my dynamic dropdown not updating using selectFirstChoice and token unset?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/584213#M47886</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Will this solution update the dropdown UI as well?&lt;/P&gt;&lt;P&gt;I am having a similar problem of the 2nd dropdown not refreshing when the selection of 1st dropdown which the 2nd dropdown is dependent on) is changed.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 08:03:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Why-is-my-dynamic-dropdown-not-updating-using-selectFirstChoice/m-p/584213#M47886</guid>
      <dc:creator>Chintan_m</dc:creator>
      <dc:date>2022-02-09T08:03:06Z</dc:date>
    </item>
  </channel>
</rss>

