- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
gokool2u
Explorer
09-11-2016
09:24 PM
I have created a dashboard which will display charts based on the values clicked in another dashboard. I am passing tokens and displaying it in a textbox. Drilldown is working fine but now I want to hide the textbox but it has to receive the token value. Is there any way to hide a textbox in the dashboard?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
jeffland

SplunkTrust
09-12-2016
03:13 AM
Yeah, you can simply make your input depend on an unset token:
<input depends="$hidden$">
...
Provided that your dashboard doesn't use a token by the name of hidden, of course. This should hide your input yet keep the token functional.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
jeffland

SplunkTrust
09-12-2016
03:13 AM
Yeah, you can simply make your input depend on an unset token:
<input depends="$hidden$">
...
Provided that your dashboard doesn't use a token by the name of hidden, of course. This should hide your input yet keep the token functional.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
gokool2u
Explorer
09-12-2016
03:24 AM
Thank you so much jeffland..
