Dashboards & Visualizations

I would like to make table_row_highlighting.js loaded automatically.

Shuhei052492
Path Finder

Hi,

I have copied the "table_row_highlighting.js" and "table_decorations.css" in Splunk DashBoard Example and created new ones.
After that the javascript and css looks fine. And table row color and font are changed depending on the key value.

However the only table row color is not changed with the following situation although the table value font is changed.
1. open this dashboard first time.
2. do not change the input panel value.
3. drilldown to this dashboard.

After I do the above thing, table row color is changed.

I am thinking that there is a cause to happen this issue in the lines.
###Original JS###

   mvc.Components.get('colortable').getVisualization(function(tableView) {
        tableView.on('rendered', function() {
            //Apply class of the cells to the parent row in order to color the whole row
                        tableView.$el.find('td.range-cell').each(function() {
            $(this).parents('tr').addClass(this.className);
            });
              });
            //Add custom cell renderer, the table will re-render automatically.
            tableView.addCellRenderer(new CustomRangeRenderer());
        });
});

###myJS###

    mvc.Components.get('colortable').getVisualization(function(tableView) {
        // Add custom cell renderer
       tableView.table.addCellRenderer(new CustomRangeRenderer());
        tableView.on('rendered', function() {
            // Apply class of the cells to the parent row in order to color the whole row
            tableView.$el.find('td.range-cell').each(function() {
                  $(this).parents('tr').addClass(this.className);
           });
         // Force the table to re-render
            tableView.table.render();
        });
     });
 });

Does anyone have an idea or advice to solve it?
I appreciate any ideas and advices.

Best regards,

0 Karma
1 Solution

Shuhei052492
Path Finder
0 Karma

Shuhei052492
Path Finder

Hi,
This myJs is working in splunk 6.6.3!
But I would like to let it work in 7.1.3.
Does anyone have another idea?

0 Karma
Get Updates on the Splunk Community!

Uncovering Multi-Account Fraud with Splunk Banking Analytics

Last month, I met with a Senior Fraud Analyst at a nationally recognized bank to discuss their recent success ...

Secure Your Future: A Deep Dive into the Compliance and Security Enhancements for the ...

What has been announced?  In the blog, “Preparing your Splunk Environment for OpensSSL3,”we announced the ...

New This Month in Splunk Observability Cloud - Synthetic Monitoring updates, UI ...

This month, we’re delivering several platform, infrastructure, application and digital experience monitoring ...