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!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...