Dashboards & Visualizations

How to force rerendering TableView from Javascript?

lmichalski_2
Explorer

I have tried tableView.render(), but it doesn't call render anymore.

I need to feed table visualisation with my own custom data, grabbed from the JS level

How to force to refresh it?

My part of code, called after I got some external results:

  mvc.Components.get("incidents").getVisualization(function(tableView) {
        tableView.addRowExpansionRenderer(new IncidentRowRenderer());
        tableView.addCellRenderer(new IncidentCellRenderer());
        tableView.render();
    });

tableView.render() doesn't refresh table, if it was previously renderered.

1 Solution

bowesmana
SplunkTrust
SplunkTrust

Not sure if this is too late to help you, but I found a way to do this. Within my search that populates the table, I am doing this

eval Update=$update_table$

where the token value is 0 to start with. I am not showing this field in the table. Prior to calling render() do this

var submittedTokens = mvc.Components.get('submitted');
update_table++;
submittedTokens.set('update_table', update_table);

where update_table is also a var in your script. This appears to work for me

View solution in original post

0 Karma

bowesmana
SplunkTrust
SplunkTrust

Not sure if this is too late to help you, but I found a way to do this. Within my search that populates the table, I am doing this

eval Update=$update_table$

where the token value is 0 to start with. I am not showing this field in the table. Prior to calling render() do this

var submittedTokens = mvc.Components.get('submitted');
update_table++;
submittedTokens.set('update_table', update_table);

where update_table is also a var in your script. This appears to work for me

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...