- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
sravankaripe
Communicator
04-06-2017
12:12 PM
i have a dashboard with 3 panels .
i want to hide/show my 3rd panel based on radio button.
Please provide sample code for my use case.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

cmerriman
Super Champion
04-06-2017
12:33 PM
I have mine written out based on a checkbox, but you can probably tweek it for a radio button. Overview is my panel title that I'm hiding.
...
<input type="checkbox" token="overview" searchWhenChanged="true">
<label>Overview</label>
<choice value="true">Show</choice>
<change>
<condition label="Show">
<set token="overview">true</set>
</condition>
</change>
<default>true</default>
</input>
...
<panel depends="$overview$">
...
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

AzJimbo
Path Finder
02-20-2020
02:29 AM
I used this today for a results panel - thank you.
However, If you just have html to present (instructions or overview or what ever) you can use the html5 tags
<panel>
<html>
<details>
<summary>here's the deetz</summary>
<p>the deetz you're talking about</p>
<details>
<summary>sub-deetz</summary>
<p>the nested sub deetz in html</p>
</details>
</details>
</html>
</panel>
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

cmerriman
Super Champion
04-06-2017
12:33 PM
I have mine written out based on a checkbox, but you can probably tweek it for a radio button. Overview is my panel title that I'm hiding.
...
<input type="checkbox" token="overview" searchWhenChanged="true">
<label>Overview</label>
<choice value="true">Show</choice>
<change>
<condition label="Show">
<set token="overview">true</set>
</condition>
</change>
<default>true</default>
</input>
...
<panel depends="$overview$">
...
