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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...