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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...