Dashboards & Visualizations

Conditional for hidden panels

JoshuaJohn
Contributor

When I click one of my panels it shows another one, I want to be able to click that original panel and re-hide the panel that is now showing.

I tried doing something like this, but couldn't get it working.

<drilldown>
  <condition NotinUse !=="true">
    <set token="NotinUse">true</set>
  </condition>
  <condition NotinUse=="true">
    <set token="NotinUse">"false"</set>
  </condition>
</drilldown>
0 Karma
1 Solution

niketn
Legend

@JosuaJohn... Please try the following:

    <drilldown>
      <condition match="$NotinUse$==&quot;true&quot;">
        <unset token="NotinUse"></unset>
      </condition>
      <condition>
        <set token="NotinUse">true</set>
      </condition>
    </drilldown>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

0 Karma

niketn
Legend

@JosuaJohn... Please try the following:

    <drilldown>
      <condition match="$NotinUse$==&quot;true&quot;">
        <unset token="NotinUse"></unset>
      </condition>
      <condition>
        <set token="NotinUse">true</set>
      </condition>
    </drilldown>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

rjthibod
Champion

You need to slightly adjust your syntax. I would suggest renaming the token to be slightly more logical, like the following.

 <drilldown>
   <condition match="'InUse' != &quot;true&quot;'>
     <set token="InUse">true</set>
   </condition>
   <condition match="'InUse' == &quot;true&quot;'>
     <unset token="InUse"/>
   </condition>
 </drilldown>

...
<panel depends="$InUse$">
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, ...