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!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...