Dashboards & Visualizations

How to dynamically change dropdown values based on radio button selection

vn86893
Explorer

Hello,

I am planning to display some server in the drop down based on the selection of dropdown.
From the image, I want to select all servers in test10 series when 1.0 is selected.
i.e when 1.0 is selected I need to display test10-19 in a dropdown,
when 2.0 selected I need to display test20-29 and
when 3.0 is selected I need to display test30-39 in dropdown.

alt text

0 Karma

vnravikumar
Champion

Hi

How you are populating Server dropdown?

0 Karma

vn86893
Explorer

These are static server names. Not necessarily need to be just 10 of them. There may be multiple servers. I can have a list of servers that need to populate in dropdown when a radio button is selected.

0 Karma

jpolvino
Builder

Then you need to somehow label those servers so that when the 1.0 radio button is selected, it knows which servers to populate the drop down with. One way to do it is a lookup, but this requires maintenance to stay accurate.

If this is the case, then please add this detail and I'm sure you'll get a number of solutions. The answer I posted below would still work, but lines 24-27 would need to be updated to pick rows from the lookup table and assign the field for value and label correctly.

0 Karma

jpolvino
Builder

This gets you pretty close I believe:

<form>
  <label>dynamic dropdown</label>
  <fieldset submitButton="false">
    <input type="time" token="dateTime">
      <label>Time</label>
      <default>
        <earliest>-60m@m</earliest>
        <latest>now</latest>
      </default>
    </input>
    <input type="radio" token="category">
      <label>Category</label>
      <choice value="0">1.0</choice>
      <choice value="1">2.0</choice>
      <choice value="2">3.0</choice>
      <change>
        <set token="mult">$value$</set>
        <set token="form.Server"></set>
        <set token="Server"></set>
      </change>
    </input>
    <input type="dropdown" token="Server">
      <label>Server</label>
      <fieldForLabel>Test</fieldForLabel>
      <fieldForValue>Test</fieldForValue>
      <search>
        <query>| makeresults count=10 | eval Test=1 | accum Test | eval Test=Test+9+($mult$*10) | eval Test="Test".Test</query>
        <earliest>-24h@h</earliest>
        <latest>now</latest>
      </search>
      <default></default>
      <initialValue></initialValue>
    </input>
  </fieldset>
</form>
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Share Your Feedback: On Admin Config Service (ACS)!

Help Us Build a Better Admin Config Service Experience (ACS)   We Want Your Feedback on Admin Config Service ...

Build the Future of Agentic AI: Join the Splunk Agentic Ops Hackathon

AI is changing how teams investigate incidents, detect threats, automate workflows, and build intelligent ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...