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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...