Dashboards & Visualizations

How to hide input panels based on other input panels?

Braagi
New Member

As the title says, I am attempting to hide input panels based on the input provided in another input panel.
As it stands, the tokens get set correctly, but the panels are still displayed.
Been working on this a while now and still can not see what the issue is...

Code :

<input type="time" token="Timefield1">
      <label></label>
      <default>
        <earliest>-4h@m</earliest>
        <latest>now</latest>
      </default>
    </input>

    <input type="radio" token="Basic" searchWhenChanged="true">
      <label>What type of monitoring?</label>
      <choice value="0">Whole Range (noisy)</choice>
      <choice value="1">Specific IP</choice>

      <change>
           <condition label="Whole Range (noisy)">
               <set token="theVar">|search (("Stuff and Things"))</set>
               <unset token="show_input1"></unset>
               <unset token="show_input2"></unset>
               <unset token="show_input3"></unset>
           </condition>
           <condition label="Specific IP">
               <set token="show_input1">1</set>
               <unset token="theVar"></unset>
           </condition>
      </change>

    </input>

    <input type="radio" token="Basic3" searchWhenChanged="true" depends="show_input1">
      <label>Known Server or Ad-Hoc search?</label>
      <choice value="1">Known Server</choice>
      <choice value="0">Manual Entry</choice>

      <change>
           <condition label="Manual Entry">
               <set token="show_input3">1</set>
               <unset token="show_input2"></unset>
               <unset token="theVar"></unset>
           </condition>
           <condition label="Known Server">
               <set token="show_input2">1</set>
               <unset token="show_input3"></unset>
               <unset token="theVar"></unset>
           </condition>
      </change>

    </input>

    <input type="dropdown" token="theVar" searchWhenChanged="true" depends="show_input2">
      <label>Known Server list</label>
      <fieldForLabel>IP</fieldForLabel>
      <fieldForValue>IP</fieldForValue>
      <search>
        <!-- Change the CSV when needed -->
        <query>| inputlookup NAME.csv</query>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </search>
    </input>

    <input type="text" token="theVar" depends="show_input3">
      <label>IP of Interest</label>
    </input>
0 Karma
1 Solution

niketn
Legend

@Braagi, you are using show_input1 etc as tokens hence depends should have them between two dollar signs i.e. $show_input1$. So, depends="show_input1", depends="show_input2" and depends="show_input3" in your code should actually be

depends="$show_input1$"

depends="$show_input2$"

depends="$show_input3$"

Please try out and confirm!

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

@Braagi, you are using show_input1 etc as tokens hence depends should have them between two dollar signs i.e. $show_input1$. So, depends="show_input1", depends="show_input2" and depends="show_input3" in your code should actually be

depends="$show_input1$"

depends="$show_input2$"

depends="$show_input3$"

Please try out and confirm!

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

Braagi
New Member

Oh my god. Five hours I worked on that and never saw it. Even had someone else look it over and they didn't see it...

Thank you for the assistance!

0 Karma

niketn
Legend

@Braagi yes sometimes tiniest details miss our eyes 🙂 Happy Weekend!

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...