Dashboards & Visualizations

How to set token value in the updateView using Javascript?

rsathish47
Contributor

Hi all ,

Can you please help me how to set token value in the updateView? I have added my code.

I know that am missing something , please help me

// demoview 
define(function(require, exports, module){
    // Base class for custom views
    var SimpleSplunkView = require('splunkjs/mvc/simplesplunkview');
    var mvc = require("splunkjs/mvc");

// Define the custom view class
var DemoView = SimpleSplunkView.extend({
    className: "demoview",

    // Change the value of the "data" property
    options: {
        data: "results"
    },

    // Override this method to configure your view
    // This function must return a handle to the view, which is then passed
    // to the updateView method as the first argument. Because there is no
    // visualization, just return 'this'
    createView: function() {
        return this;
    },

    // Override this method to put the Splunk data into the view
    updateView: function(viz, data) {
        // Print the data object to the console
        console.log("The data object: ", data);

         var tokens = mvc.Components.get("default");

// Retrieve the value of a token $mytoken$
var tokenValue = tokens.get("token1");

console.log("Aready existsS" + tokenValue);
// Change the value of a token $mytoken$
tokens.set("token1", "this is the new value");

        //var tokens = mvc.Components.getInstance("default");
        //tokens.set("token1", "Test");
        console.log("Current -->" + tokens.get("token1"));
        var myResults = data[0];  // Sets this to the first (and only) row
        this.$el.html("The count of search results: <b>" + myResults + "</b>");
    }
});

return DemoView;
});

Thanks

Tags (2)
0 Karma
1 Solution

rsathish47
Contributor

it is fixed by adding form.tokenname..

tokens.set("form.token1", "this is the new value")

View solution in original post

rsathish47
Contributor

it is fixed by adding form.tokenname..

tokens.set("form.token1", "this is the new value")

Get Updates on the Splunk Community!

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 ...

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...