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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...