Dashboards & Visualizations

Dashboard with dynamic multi-select searchWhenChanged=false

big_nuggets
Explorer

I have a multiselect input that gets populated by results from a search. When I set searchwhenchanged="false" it it doesn't add the selectedValue to the multiselect.

This is some broken code that I spaghettied together from searching, clearly I'm not great with Splunk:

 

 

require(['splunkjs/mvc', 'splunkjs/mvc/simplexml/ready!'], function (mvc) {

    console.log("multiselect_functions.js loaded.");

    function setupMultiInput(instance_id) {
        /*
         */

        // Get multiselect  
        //    var multi = mvc.Components.get(instance_id);

        // On change, check selection  
        //    multi.on("change", (selectedValues) => {
        //        console.log("values:  " + selectedValues);

        //    });

        var multi = mvc.Components.get(instance_id);

        // On change, check selection  
        multi.on("change", function() {
            console.log("change " +multi.val());
            multi.settings.set.choices("choices", ['53','57']);
            //blah
        });

    }

    var all_multi_selects = document.getElementsByClassName("input-multiselect");
    for (j = 0; j < all_multi_selects.length; j++) {
        setupMultiInput(all_multi_selects[j].id);
    }

});

 

 

 Above I'm just trying to insert to some random stuff, I get a multi.settings.set.choices is not a function error, so I am probably trying on the wrong object. Any help would be greatly appreciated it, thank you.

Labels (5)
0 Karma
1 Solution

big_nuggets
Explorer

Doing this works:

 

multi.val(['AA','BB','CC']);

 

View solution in original post

0 Karma

big_nuggets
Explorer

Doing this works:

 

multi.val(['AA','BB','CC']);

 

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...