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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...