Splunk Dev

Multiple Renderers to Multiple Tables (Splunk JS)

splunkian
Path Finder

Apologies if this has been asked elsewhere - I couldn't find an answer.

I am attempting to apply a BaseRowExpansionRenderer and a BaseCellRenderer to multiple tables on a dashboard like so:

    mvc.Components.getInstance("tbl_id1").getVisualization(function(tableView) {
        tableView.addRowExpansionRenderer(new RowExpansionRenderer());
        tableView.addCellRenderer(new ActionsRenderer());
        tableView.table.render();
    });

    mvc.Components.getInstance("tbl_id2").getVisualization(function(tableView) {
        tableView.addRowExpansionRenderer(new RowExpansionRenderer());
        tableView.addCellRenderer(new ActionsRenderer());
        tableView.table.render();
    });

The issue is that the sometimes all the tables render as expected, sometimes some of them render, and other times none of them render. This is currently being tested on Splunk Enterprise 7.0.1.

Is there a better way to do this to ensure all the tables always render the BaseRowExpansionRenderer and a BaseCellRenderer?

Thanks in advance.

Labels (1)
0 Karma

niketn
Legend

@splunkian table row expansion is not working or cell renderer? Also when you expand table row which is the viz you are using?

Can you check out if setTimeout helps?

https://answers.splunk.com/answers/614788/splunk-dashboard-examples-table-row-highlighting-b.html

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...