Dashboards & Visualizations

Cell Highlighting with cell dependency

VeEn
Explorer

Hey folks,

table cell highlighting with javascript and css, as explained in the dashboard examples, works pretty fine.
But I am trying to build a highlighting for cell values, depending on a second column.

Example:
       test1   test2
row1     1       1   
row2     0       1      

I want to highlight all cells, where test2 has the same value as test1.
I've tried a lot of if loops and none of it seemed to work.
Has anyone found a way?

thanks in advance!

Tags (2)
0 Karma

paramagurukarth
Builder

inside your application.js for your view Splunk.util.getCurrentView() (Splunk.Module.SimpleResultsTable) {
Splunk.Module.SimpleResultsTable = $.klass(Splunk.Module.SimpleResultsTable, {

onResultsRendered: function() {
container.find("tr").each(function(){
if(jQuery(this).childrens[1].innerHTML == jQuery(this).childrens[2].innerHTML )
{
jQuery(this).addClass("highlight")
}else{
jQuery(this).addClass("normal")
}

            });
    }
}

correct some sintax error in this code

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

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

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 GA in US-AWS!

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