Splunk Enterprise

How to unset Splunk cascading dropdown tokens in a proper way?

deepikagooty
Explorer

I have a dashboard with cascading dropdowns which when a value selected in first dropdown populates the second dropdown with values based on the selection made.

For example the first dropdown has values A, B, and C. When A is selected from the first dropdown, the second dropdown should display A1, A2, and A3. Similarly should display B1, B2, B3 and C1, C2, C3 respectively.

My dashboard is populating the dropdown correctly. I am unsetting the second dropdown tokens when the first dropdown changes, to make sure the second dropdown do not contain previous token value. But this is causing me an issue while page reload. When the page is refreshed, the second dropdown token gets unset like shown below.

Before refresh

deepikagooty_2-1652375071594.png

After refresh

deepikagooty_3-1652375093349.png

If I do not unset the second dropdown tokens when the first dropdown changes, the second drop down shows the previous selected token as shown below.

deepikagooty_4-1652375131073.png

My xml looks like this

 

<form>
  <label>Dependent Drilldown</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="tokElement" searchWhenChanged="true">
      <label>Element</label>
      <choice value="A">A</choice>
      <choice value="B">B</choice>
      <choice value="C">C</choice>
      <change>
        <unset token="tokSubElement"></unset>
        <unset token="form.tokSubElement"></unset>
      </change>
    </input>
    <input type="dropdown" token="tokSubElement" searchWhenChanged="true">
      <label>Sub Element</label>
      <fieldForLabel>$tokElement$</fieldForLabel>
      <fieldForValue>$tokElement$</fieldForValue>
      <search>
        <query>| makeresults
| fields - _time
| eval A="A1,A2,A3",B="B1,B2,B3",C="C1,C2,C3" 
| fields $tokElement$
| makemv $tokElement$ delim=","
| mvexpand $tokElement$</query>
      </search>
    </input>
  </fieldset>
</form>

 

I would like my second dropdown tokens to be unset when first dropdown value changes and also maintain those tokens on page refresh. Let me know if you have any thoughts.

Labels (2)
0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...