Dashboards & Visualizations

Why a custom Java Script message appearing in each load?

ASorathiya1986
Loves-to-Learn Everything

 

I am using custom js from dashboard ui.xml

 

 

 

 

<form version="1.1" stylesheet="vulnerability_center.css" script="multiselect_input.js">

 

 

 

 

you can find my js file

 

 

 

 

 

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

        function setupMultiInput(instance_id) {

        var multiselect = mvc.Components.get(instance_id);
	    const without = (array, filtered) => array.filter(n => n != filtered);

            if (multiselect){
                multiselect.on("change", function(){
                    let current_val = multiselect.val();
                    let first_choice_value = multiselect.options.choices[0].value;
                    if (current_val.length > 1 && current_val.indexOf(first_choice_value) == 0) {
                        multiselect.val(without(current_val, first_choice_value));
                    }
                    if (current_val.length > 1 && current_val.includes(first_choice_value) && current_val.indexOf(first_choice_value) != 0) {
                        multiselect.val([first_choice_value]);
                    }
                });
            }
        };

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

 

 

 

 

 

 

Labels (2)
Tags (3)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@ASorathiya1986 

Can you please share your sample XML as well?

KV

0 Karma

ASorathiya1986
Loves-to-Learn Everything

@kamlesh_vaghela any suggestions here?

 

0 Karma
Get Updates on the Splunk Community!

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...