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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...