Dashboards & Visualizations

In an XML dashboard, how do I hide filters on submit?

matstap
Communicator

I have an XML dashboard. I want to hide the filters when the submit button is clicked and just show the results table. What javascript do I have to write to achieve this?

0 Karma

azulgrana
Path Finder

Create a new JS file under your APP static folder with the following code

require([
         "splunkjs/mvc/simplexml/ready!"
     ], function() {
         $('#submit .btn').attr('data-action','hide-filters');
         $('#submit .btn').attr('href','#');
});

and then add the file to your XML code

<form hideChrome="True" script="hide_filters_on_submit.js">

Let me know if this works!

Cheers

niketn
Legend

@azulgrana while this will work, the Hide Filters link becomes useless. So it can also be hidden in the above JS.

$('a.hide-global-filters').attr('style','visibility:hidden');
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

azulgrana
Path Finder

Hi @niketnilay

Thanks for double checking this new approach. I think the hide-on-submit is not meant to replace the "Show/Hide Filters" and would be convenient to still keep it in case you need to review the filter criteria or make changes to it.

0 Karma

niketn
Legend

Well I meant for the dashboards using the hide_filters_on_submit.js JS file, the hide filters option becomes irrelevant because same functionality is performed by Submit button as per the question.

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

Vijeta
Influencer

You can refer below link and set the tokens in your submit event-
https://answers.splunk.com/answers/615025/get-a-token-when-clicking-on-hide-filters-on-a-das.html

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...