Dashboards & Visualizations

How to pass a token value from dashboard Simple XML to a JavaScript file?

kabiraj
Path Finder

I want to pass a token value from a dashboard Simple XML page to the js file which is attached with the XML.
e.g.

<form script="abc.js">
    <input type="text" token="def" searchWhenChanged="true">
      <label>DEF</label>
    </input>
.
.
.
.
</form>

I want to pass the value of "def" to "abc.js". Is it possible to do?

0 Karma

jeffland
SplunkTrust
SplunkTrust

In your .js, you need to require the right stuff, and then you can simply grab the tokens from the token model. Something like this:

require([
    'splunkjs/mvc/simplexml/ready!',
    "splunkjs/mvc"
],
function(
    mvc
    ) {
        // Get the default model
        var defaultTokenModel = splunkjs.mvc.Components.getInstance("default");
        // Get some token from there
        var token_def = defaultTokenModel.get("def");
        ...

See here for the docs.

Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

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